mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Exception is raised during reading step file containing p-curve having not-unique last knot. Modification correcting misprint during computation new numbers of poles for such case was made in the file StepToGeom_MakeBSplineCurve.pxx Protection against exception was made in the file StepToTopoDS/StepToTopoDS_TranslateEdge.cxx. Warning message was added in the file StepToTopoDS_TranslateEdgeLoop.cxx. Test case for issue CR26289
29 lines
681 B
Plaintext
Executable File
29 lines
681 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC26289"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# STEP import/export produces an empty shape
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug26289_solid_3.brep] a1
|
|
|
|
set aFile ${imagedir}/bug26289.stp
|
|
catch { file delete ${aFile} }
|
|
|
|
stepwrite a a1 ${aFile}
|
|
|
|
stepread ${aFile} b *
|
|
|
|
checknbshapes b_1 -vertex 338 -edge 673 -wire 337 -face 337 -shell 1 -solid 1 -compsolid 0 -compound 0 -shape 1687 -m "Shape"
|
|
|
|
vinit View1
|
|
vdisplay a1
|
|
vfit
|
|
vdump ${imagedir}/${casename}_1.png
|
|
|
|
vinit View2
|
|
vdisplay b_1
|
|
vfit
|
|
vdump ${imagedir}/${casename}_2.png
|