mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
50 lines
1.4 KiB
Plaintext
Executable File
50 lines
1.4 KiB
Plaintext
Executable File
puts "========================"
|
|
puts " OCC1642 "
|
|
puts "========================"
|
|
puts ""
|
|
###########################################################
|
|
puts " ShapeFix_Wire::FixSelfIntersectingEdge does not remove a loop"
|
|
###########################################################
|
|
|
|
pload QAcommands
|
|
cpulimit 2000
|
|
|
|
restore [locate_data_file OCC1642.brep] shape
|
|
|
|
set list [OCC1642 result FinalFace InitWare InitFace shape FixReorder FixDegenerated FixConnected FixSelfIntersection]
|
|
|
|
set FixSelfIntersection [string last "FixSelfIntersection" $list]
|
|
set Intersectingpt [string last "Intersecting pt :" $list]
|
|
|
|
puts "FixSelfIntersection=${FixSelfIntersection}"
|
|
puts "Intersectingpt=${Intersectingpt}"
|
|
if { ${Intersectingpt} == -1} {
|
|
puts "Warning: There are not intersecting points"
|
|
}
|
|
|
|
set list [lprops result]
|
|
regexp {Mass +: +([-0-9.+eE]+)} $list full pcurve_length
|
|
|
|
set good_pcurve_length 3880.52
|
|
set percent_max 0.1
|
|
set percent [expr abs(${pcurve_length} - ${good_pcurve_length}) / double(${good_pcurve_length}) * 100.]
|
|
|
|
puts "good_pcurve_length = ${good_pcurve_length}"
|
|
puts "pcurve_length = ${pcurve_length}"
|
|
puts "percent = ${percent}"
|
|
|
|
if {${percent} > ${percent_max}} {
|
|
puts "OCC1642 Faulty length: function FixShape works WRONGLY !!"
|
|
} else {
|
|
puts "OCC1642 length: function FixShape works CORRECTLY"
|
|
}
|
|
|
|
if { ${Intersectingpt} > ${FixSelfIntersection} } {
|
|
puts "OCC1642 Faulty"
|
|
} else {
|
|
puts "OCC1642 OK"
|
|
}
|
|
|
|
set 2dviewer 0
|
|
|