mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The usage of *BRepAlgo_Section* has been replaced with the usage of *BRepAlgoAPI_Section* in *BRepProj_Projection* algorithm. The TODO statements have been removed from the failing test case in the "prj" grid as they are working correctly now. The following changes have been made to improve the performance *BRepAlgoAPI_Section*: 1. Revision of the *IntPolyh_Intersection* class to avoid repeated calculation of the deflection of the same triangulation. 2. Small revision of the Edge/Face intersection algorithm to perform Extrema computation on the whole intersection range of the edge instead of discrete ranges. 3. Implementation of the extrema computation for the Circle and Sphere. 4. Correct computation of the parameter of the point on the Circle.
26 lines
654 B
Plaintext
Executable File
26 lines
654 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC25407"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Exception in extrema operation.
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug25407_e2.brep] e
|
|
restore [locate_data_file bug25407_f2.brep] f
|
|
|
|
mkcurve c e
|
|
mksurface s f
|
|
|
|
trim st s -0.168011130695572 0. -16.5 0.
|
|
trim ct c 1.1167213545471877e-008 0.033333343614041021
|
|
|
|
extrema ct st
|
|
|
|
if { [isdraw ext_1] } {
|
|
set len [lindex [length ext_1] end]
|
|
checkreal "Extrema min distance" $len 1.00005e-07 1.e-7 1.e-7
|
|
} else {
|
|
puts "Error: invalid result"
|
|
}
|