mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-30 12:14:08 +03:00
33 lines
579 B
Plaintext
33 lines
579 B
Plaintext
puts "============"
|
|
puts "OCC25632"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# IGES writer looses face orientation
|
|
#######################################################################
|
|
|
|
plane p 0 0 0 0 0 1 1 0 0
|
|
mkface face p 0 100 0 100
|
|
|
|
smallview
|
|
donly face
|
|
|
|
nurbsconvert r face
|
|
mksurface s r
|
|
|
|
mkface f s 10 20 30 40
|
|
|
|
treverse f
|
|
normals f 100
|
|
|
|
xwd ${imagedir}/${test_image}_1.png
|
|
|
|
testwriteiges ${imagedir}/f_2.igs f
|
|
testreadiges ${imagedir}/f_2.igs ff
|
|
|
|
donly ff
|
|
|
|
normals ff 100
|
|
|
|
xwd ${imagedir}/${test_image}_2.png
|