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.
19 lines
624 B
Plaintext
19 lines
624 B
Plaintext
puts "========"
|
|
puts "OCC29426"
|
|
puts "========"
|
|
puts ""
|
|
########################################
|
|
# Extrema algorithm fails to find minimal distance between Circle and Sphere
|
|
########################################
|
|
|
|
|
|
circle c 3.59679185933224e-016 11.6635040382361 -3.23970209548358 -3.67401855705945e-017 -0.943656647634893 0.330926172090505 -2.2723161366922e-016 0.330926172090505 0.943656647634893 1.30000000000039
|
|
sphere s 0 2.425 0 0 1 0 1 -0 0 9.876
|
|
|
|
set log [extrema c s]
|
|
|
|
if {![regexp "Point" $log]} {
|
|
set ext_dist [lindex [length ext_1] end]
|
|
checkreal "Circle/Sphere min distance" $ext_dist 0. 1.e-10 1.e-10
|
|
}
|