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.
32 lines
784 B
Plaintext
32 lines
784 B
Plaintext
puts "========"
|
|
puts "OCC23927"
|
|
puts "========"
|
|
puts ""
|
|
######################################################################
|
|
# BRepProj_Projection produces Edge with one Vertex outside from curve
|
|
######################################################################
|
|
|
|
restore [locate_data_file bug23927_line.brep] line
|
|
restore [locate_data_file bug23927_surf.brep] surf
|
|
|
|
breducetolerance surf
|
|
|
|
prj p line surf 0.57735025882720947 -0.57735025882720947 0.57735025882720947
|
|
|
|
explode p_1 V
|
|
|
|
smallview
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
|
|
|
explode line V
|
|
|
|
set tol_abs 0.001
|
|
set tol_rel 0
|
|
|
|
distmini d p_1_1 line_2
|
|
checkreal "Projection, p1" [dval d_val] 0 $tol_abs $tol_rel
|
|
|
|
distmini d p_1_2 line_1
|
|
checkreal "Projection, p2" [dval d_val] 0 $tol_abs $tol_rel
|