mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. New testgrid "lowalgos/intss" has been created. It will contain all test cases on geometrical intersection of two surfaces ("intersect" DRAW-command) and two faces ("bopcurves" DRAW-command). 2. New test case for the issue #28493 has been created because the problem is not reproduced on MASTER. 3. Test case (lowalgos/intss/bug24472) for the issue #29501 has been modified in order to check loops of the resulting intersection curves.
30 lines
847 B
Plaintext
30 lines
847 B
Plaintext
puts "================"
|
|
puts "OCC27175"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Intersection algorithm with increased tolerance works incorrect with some shapes
|
|
#######################################################################
|
|
|
|
set ExpectTol 3.002046539399851e-006
|
|
set GoodNbCurv 2
|
|
|
|
plane pl 0.195808075898442 -0.229262227170656 4.05546403129991 0 0 1
|
|
psphere s1 pl 0.03101752454
|
|
restore [locate_data_file bug27128-Helix_Pipe.brep] s2
|
|
|
|
explode s1 f
|
|
explode s2 f
|
|
|
|
settolerance s1_1 2.0e-6
|
|
settolerance s2_2 2.0e-6
|
|
bopcurves s1_1 s2_2 -2d
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} [bopcurves s1_1 s2_2 -2d] full Toler NbCurv
|
|
|
|
checkreal "Tolerance Reached" ${Toler} ${ExpectTol} 0.0 0.1
|
|
|
|
if {${NbCurv} != ${GoodNbCurv}} {
|
|
puts "Error: Curve Number is bad!"
|
|
}
|