diff --git a/tests/bugs/mesh/bug23614_1 b/tests/bugs/mesh/bug23614_1 new file mode 100644 index 0000000000..3b18d8d83f --- /dev/null +++ b/tests/bugs/mesh/bug23614_1 @@ -0,0 +1,35 @@ +puts "================" +puts "CR23614" +puts "================" +puts "" +##################################################################### +# BRepMesh creates incorrect triangulation on the attached models +##################################################################### + +restore [locate_data_file bug23614_face1.brep] f1 +tclean f1 +incmesh f1 0.01 +set info [trinfo f1] +regexp {([0-9]+) triangles} $info full tri +regexp {([0-9]+) nodes} $info full nod + +# compare number of triangles +if { $tri == 0 } { + puts "Error: face contains $tri triangles" +} else { + puts "OK: face contains $tri triangles" +} + +# compare number of nodes +if { $nod == 0 } { + puts "Error : face contains $nod nodes" +} else { + puts "OK: face contains $nod nodes" +} + +top +fit +triangles f1 +set only_screen_axo 1 + + diff --git a/tests/bugs/mesh/bug23614_2 b/tests/bugs/mesh/bug23614_2 new file mode 100644 index 0000000000..9bc62b5456 --- /dev/null +++ b/tests/bugs/mesh/bug23614_2 @@ -0,0 +1,35 @@ +puts "================" +puts "CR23614" +puts "================" +puts "" +##################################################################### +# BRepMesh creates incorrect triangulation on the attached models +##################################################################### + +restore [locate_data_file bug23614_face2.brep] f2 +tclean f2 +incmesh f2 0.01 +set info [trinfo f2] +regexp {([0-9]+) triangles} $info full tri +regexp {([0-9]+) nodes} $info full nod + +# compare number of triangles +if { $tri == 0 } { + puts "Error: face contains $tri triangles" +} else { + puts "OK: face contains $tri triangles" +} + +# compare number of nodes +if { $nod == 0 } { + puts "Error : face contains $nod nodes" +} else { + puts "OK: face contains $nod nodes" +} + +top +fit +triangles f2 +set only_screen_axo 1 + + diff --git a/tests/bugs/mesh/bug23614_3 b/tests/bugs/mesh/bug23614_3 new file mode 100644 index 0000000000..86039ce3f2 --- /dev/null +++ b/tests/bugs/mesh/bug23614_3 @@ -0,0 +1,35 @@ +puts "================" +puts "CR23614" +puts "================" +puts "" +##################################################################### +# BRepMesh creates incorrect triangulation on the attached models +##################################################################### + +restore [locate_data_file bug23614_face3.brep] f3 +tclean f3 +incmesh f3 0.01 +set info [trinfo f3] +regexp {([0-9]+) triangles} $info full tri +regexp {([0-9]+) nodes} $info full nod + +# compare number of triangles +if { $tri == 0 } { + puts "Error: face contains $tri triangles" +} else { + puts "OK: face contains $tri triangles" +} + +# compare number of nodes +if { $nod == 0 } { + puts "Error : face contains $nod nodes" +} else { + puts "OK: face contains $nod nodes" +} + +top +fit +triangles f3 +set only_screen_axo 1 + + diff --git a/tests/bugs/mesh/bug23614_4 b/tests/bugs/mesh/bug23614_4 new file mode 100644 index 0000000000..368f1050d2 --- /dev/null +++ b/tests/bugs/mesh/bug23614_4 @@ -0,0 +1,35 @@ +puts "================" +puts "CR23614" +puts "================" +puts "" +##################################################################### +# BRepMesh creates incorrect triangulation on the attached models +##################################################################### + +restore [locate_data_file bug23614_face4.brep] f4 +tclean f4 +incmesh f4 0.01 +set info [trinfo f4] +regexp {([0-9]+) triangles} $info full tri +regexp {([0-9]+) nodes} $info full nod + +# compare number of triangles +if { $tri == 0 } { + puts "Error: face contains $tri triangles" +} else { + puts "OK: face contains $tri triangles" +} + +# compare number of nodes +if { $nod == 0 } { + puts "Error : face contains $nod nodes" +} else { + puts "OK: face contains $nod nodes" +} + +top +fit +triangles f4 +set only_screen_axo 1 + +