mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-04 03:38:01 +08:00
e2f8fe449c
Adding test case for the issue. The problem has been fixed after the patch #28379.
28 lines
809 B
Plaintext
28 lines
809 B
Plaintext
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"
|
|
}
|