mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
This commit is contained in:
parent
87036bbb70
commit
1bb8ce7b7d
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user