From 1bb8ce7b7d1f1e63472434915a7e6a407e20fcc2 Mon Sep 17 00:00:00 2001 From: oan Date: Fri, 16 Nov 2018 14:20:54 +0300 Subject: [PATCH] 0025628: BRepMesh fails to mesh face with open wire, considered as correct by checkshape Do not check status for "UnorientedWire", but check number of triangles instead. --- tests/bugs/mesh/bug25628 | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/tests/bugs/mesh/bug25628 b/tests/bugs/mesh/bug25628 index cbee843cbf..2dac4f54b1 100644 --- a/tests/bugs/mesh/bug25628 +++ b/tests/bugs/mesh/bug25628 @@ -1,7 +1,3 @@ -puts "TODO CR25628 ALL: Error: Number of triangles is equal to 0" -puts "TODO CR25628 ALL: Error: Number of nodes is equal to 0" -puts "TODO CR25628 ALL: Error: BRepMesh fails to mesh face with open wire, considered as correct by checkshape" - puts "=========" puts "CR25628: BRepMesh fails to mesh face with open wire, considered as correct by checkshape" puts "=========" @@ -15,15 +11,21 @@ explode a f checkshape a_36 -set Log [incmesh a_36 0.1] -if {[regexp "UnorientedWire" ${Log}] == 1} { - puts "Error: BRepMesh fails to mesh face with open wire, considered as correct by checkshape" +incmesh a_36 0.1 + +set log [tricheck a_36] +if { [llength $log] != 0 } { + puts "ERROR: OCC25628 is reproduced. Nontriangulated face have been detected." +} else { + puts "Mesh is OK" } -checktrinfo a_1 -tri -nod +checktrinfo a_36 -tri 37 -nod 39 -smallview -donly a_36 -left -fit -checkview -screenshot -2d -path ${imagedir}/${test_image}-2d.png +vinit +vdisplay a_36 +vsetdispmode a_36 1 +vleft +vfit + +checkview -screenshot -3d -path ${imagedir}/${test_image}.png