mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Split seam edge of a cone according to the specified parameters. Seam edge functor is called before check of triangulation consistency in order to keep face status consistent. The cause is that split seam edge can set Outdated flag when Reused is set by another functor without reset which can lead to refusement of such face by triangulation procedure. Fix compilation error on VS2008
25 lines
638 B
Plaintext
25 lines
638 B
Plaintext
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"
|
|
}
|