mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Removed unnecessary tolerance increase for Line\Line intersection. Tolerance increasing logic for some specific curve types was added with #26619. Original fix had no test for Line/Line case and theoretically was added as a possible issue. After research Line/Line case doesn't need a special tolerance case.
27 lines
836 B
Plaintext
27 lines
836 B
Plaintext
puts "==================================================="
|
|
puts "0033648: Modeling Algorithms - Bad partition result"
|
|
puts "==================================================="
|
|
puts ""
|
|
|
|
pload MODELING
|
|
restore [locate_data_file bug33648_1.brep] s1
|
|
restore [locate_data_file bug33648_2.brep] s2
|
|
|
|
baddobjects s1 s2
|
|
bfillds
|
|
bbuild result
|
|
|
|
checkprops result -s 87.2813
|
|
checknbshapes result -vertex 58 -edge 97 -wire 44 -face 44 -shell 4 -solid 4 -compsolid 0 -compound 2 -shape 253
|
|
|
|
set expected_MaxTolerance 0.05
|
|
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance result] full MaxTolerance
|
|
if { $MaxTolerance > $expected_MaxTolerance } {
|
|
puts "Error : too big tolerance for the shape (should be less than $expected_MaxTolerance, now $MaxTolerance)"
|
|
}
|
|
|
|
vinit
|
|
vdisplay result
|
|
vfit
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|