1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0025042: Cone Meshing: Missing two connecting edges.

Adding test case for the issue.
The problem has been fixed after the patch #28379.
This commit is contained in:
nbv 2018-11-08 09:57:17 +03:00 committed by bugmaster
parent 42a213c67f
commit e2f8fe449c

27
tests/bugs/mesh/bug25042 Normal file
View File

@ -0,0 +1,27 @@
puts "TODO 0025042 All: Error: Number of triangles = 931 is not equal to expected 957"
puts "TODO 0025042 All: Error: Number of nodes = 532 is not equal to expected 558"
puts "=========="
puts "0025042: Cone Meshing: Missing two connecting edges."
puts "=========="
puts ""
pcone result 200 0 500
incmesh result 0.2 -a 0.2*180.0/pi -relative -parallel
vinit
vsetdispmode 1
vdefaults -autoTriang 0
vdisplay result
vviewparams -scale 1.81755 -proj 0.88572 0.104526 0.452299 -up -0.0339444 0.986295 -0.16146 -at 15.3368 42.2711 210.324 -eye 679.928 120.701 549.702
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
checktrinfo result -tri 957 -nod 558 -defl 50.000000020000009
set log [tricheck result]
if { [llength $log] != 0 } {
puts "Error : Invalid mesh"
} else {
puts "Mesh is OK"
}