mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Support of reading and writing tessellated geometry is added for the following STEP entities: - triangulated face - complex triangulated face - tessellated shell - tessellated solid - tessellated shape representation Models without BRep geometry (mesh formats like STL, OBJ and so on) are supported for writing to STEP. New parameters are added to enable/disable tessellated geometry reading and writing: - read.step.tessellated (On/Off/OnNoBRep) (On by default) - write.step.tessellated (On/Off/OnNoBRep) (OnNoBRep by default) OnNoBRep - tessellation is read/written only for entities for which there is no BRep representation. Faces with poly triangulation are written in STEP as triangulated face entities with one coordinates list per face. Only one poly triangulation per face (returned by BRep_Tool::Triangulation) is written to STEP.
34 lines
760 B
Plaintext
34 lines
760 B
Plaintext
|
|
# save the initial shape to STEP
|
|
stepwrite a S "${imagedir}/${casename}.stp"
|
|
|
|
# read saved STEP into an OCAF document
|
|
ReadStep D "${imagedir}/${casename}.stp"
|
|
|
|
# get document model as a single shape
|
|
XGetOneShape S1 D
|
|
|
|
# check tessellation metrics of the shape restored from STEP
|
|
checktrinfo S1 -face ${nb_faces} -nod ${nb_nodes} -tri ${nb_triangles}
|
|
|
|
vclear
|
|
vinit View1
|
|
XDisplay -dispMode 1 D -explore
|
|
vaxo
|
|
vfit
|
|
|
|
vrenderparams -shadingModel PHONG
|
|
vlight -change 0 -intensity 2.5
|
|
vlight -change 1 -intensity 0.3
|
|
vcamera -orthographic
|
|
vdump ${imagedir}/${casename}.png
|
|
|
|
Close D -silent
|
|
Close D1 -silent
|
|
unset S
|
|
unset S1
|
|
|
|
# restore reading/writing tessellated STEP geometry default parameters
|
|
param read.step.tessellated On
|
|
param write.step.tessellated OnNoBRep
|