mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Incorrect curve handling. If curve doesn't have trims and vertexes, we handle it such as trimmed curve, but it should be a simple curve. Curves with only one vertex and one trim should handle by another way, such as a curve that has trims but doesn't have vertexes. So I added conditions which handles these cases
14 lines
280 B
Plaintext
14 lines
280 B
Plaintext
puts "================"
|
|
puts "0032817: Data Exchange - Step export - writing untrimmed Curve"
|
|
puts "================"
|
|
|
|
pload XDE
|
|
|
|
catch {Close D}
|
|
XNewDoc D
|
|
line l1 0 0 0 0 1 0
|
|
mkedge e1 l1
|
|
XAddShape D e1
|
|
WriteStep D $imagedir/${casename}.stp
|
|
file delete $imagedir/${casename}.stp
|