1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/heal/bug884
apn 352ffd7358 Adding test cases for chl grid
Test case tests/bugs/modalg/dxf906 was renamed to bug889
Adding test cases to tests/bugs/moddata
Modified expressions puts [checkshape result]. Added command vzfit in end file in folder bugs. Unlocked command coordload in QABugs_3.cxx
Modified test case bugs vis buc60738
Added test cases to modalg and moddata
Added test cases to caf and fclasses
Added test cases to group heal
2012-12-21 16:39:38 +04:00

41 lines
875 B
Plaintext
Executable File

puts "============"
puts "OCC884"
puts "============"
puts ""
###################################################
## ShapeFix_Wire::FixSelfIntersection does not fix 3d curves on planes
###################################################
pload QAcommands
restore [locate_data_file OCC884.brep] a
OCC884 res a 1.1 1.1
explode res e
mkplane p res
pcurve c2d res_1 p
mkcurve c3d res_1
set list_3 [length $c3d]
set list_4 [length $c2d]
# len2 is the length of 3d curve
regexp {The length c3d is +([-0-9.+eE]+)} $list_3 full len2
# len1 is the length of 2d curve
regexp {The length c2d is +([-0-9.+eE]+)} $list_4 full len1
set percent_max 0.1
set percent [expr abs(${len2} - ${len1}) / double(${len1}) * 100.]
puts "len1 = ${len1}"
puts "len2 = ${len2}"
puts "percent = ${percent}"
if {${percent} > ${percent_max}} {
puts "OCC884: Error"
} else {
puts "OCC884: OK"
}