1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/iges/bug25632_2
isn b47bcd7ea7 0025957: nurbsconvert modifies original shape
- Ensure that the subshapes from the original shape will not be changed after nurbsconvert operation.
For that create the new vertexes (NewPoint(..)) as well as new curves (NewCurve(..)) and new surfaces (NewSurface(..)) before calling of Rebuild() method. Make copies of all vertexes impacted by curve or surface modifications. This eliminates necessity of creation of new vertices during recursive rebuilding of the entire shape.

- Compatibility with the old behavior of BRepTools_Modifier has been retained as an option. For that the new flag MutableInput has been added in the interface of the class.

- This patch also impacts other operations based on BRepTools_Modifier, in the sense that they also become safe regarding input shapes.

- Create new test cases. Some test cases with nurbsconvert command are changed to lock input shapes from modifications.

fix regressions
2016-08-18 14:46:13 +03:00

34 lines
600 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
setflags face locked
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