diff --git a/dox/user_guides/step/step.md b/dox/user_guides/step/step.md
index 9ea4dc7f44..f8f47da396 100644
--- a/dox/user_guides/step/step.md
+++ b/dox/user_guides/step/step.md
@@ -94,6 +94,7 @@ The types of STEP representation entities that are recognized are:
* geometrically_bounded_wireframe_shape_representation
* geometrically_bounded_surface_shape_representation
* hybrid representations (shape_representation containing models of different type)
+ * tessellated_shape_representation
@subsubsection occt_step_2_2_3 Topological entities
The types of STEP topological entities that can be translated are:
@@ -112,6 +113,7 @@ The types of STEP geometrical entities that can be translated are:
* directions
* curves
* surfaces
+ * triangulations
For further information see 2.4 Mapping STEP entities to Open CASCADE Technology shapes.
@@ -337,7 +339,7 @@ Specifies preferred type of representation of the shape of the product, in case
* 4 (GBSSR) -- Prefer GEOMETRICALLY_BOUNDED_SURFACE_SHAPE_REPRESENTATION
* 5 (FBSR) -- Prefer FACETTED_BREP_SHAPE_REPRESENTATION
* 6 (EBWSR) -- Prefer EDGE_BASED_WIREFRAME_SHAPE_REPRESENTATION
-* 7 (GBWSR) -- Prefer GEOMETRICALLY_BOUNDED_WIREFRAME _SHAPE_REPRESENTATION
+* 7 (GBWSR) -- Prefer GEOMETRICALLY_BOUNDED_WIREFRAME_SHAPE_REPRESENTATION
When this option is not equal to 1, for products with multiple representations the representation having a type closest to the selected one in this list will be translated.
@@ -447,6 +449,34 @@ of for each of the two "AXIS2_PLACEMENT_3D" entities referenced by it. as follow
}
~~~~
+
read.step.tessellated:
+
+Boolean flag regulating translation of entities that define tessellated geometry:
+
+* TESSELLATED_SHAPE_REPRESENTATION
+* TESSELLATED_SHELL
+* TESSELLATED_SOLID
+* TRIANGULATED_FACE
+* COMPLEX_TRIANGULATED_FACE
+
+Tesselated geometry is attached to shapes as objects of Poly_Triangulation type using STEP links.
+
+* 0 (Off) -- do not translate
+* 1 (On) -- translate
+* 2 (OnNoBRep) - tessellation is read only for entities for which there is no BRep representation
+
+Read this parameter with:
+~~~~{.cpp}
+Standard_Integer ic = Interface_Static::IVal("read.step.tessellated");
+~~~~
+
+Modify this parameter with:
+~~~~{.cpp}
+if(!Interface_Static::SetIVal("read.step.tessellated",1))
+.. error ..
+~~~~
+Default value is 0 (On).
+
@subsubsection occt_step_2_3_4 Performing the STEP file translation
Perform the translation according to what you want to translate. You can choose either root entities (all or selected by the number of root), or select any entity by its number in the STEP file. There is a limited set of types of entities that can be used as starting entities for translation. Only the following entities are recognized as transferable:
@@ -464,6 +494,11 @@ Perform the translation according to what you want to translate. You can choose
* subtypes of face_surface (including advanced_face)
* subtypes of shape_representation_relationship
* context_dependent_shape_representation
+ * tessellated_shape_representation
+ * tessellated_shell
+ * tessellated_solid
+ * triangulated_face
+ * complex_triangulated_face
The following methods are used for translation:
@@ -683,6 +718,10 @@ Not all entities defining the assembly structure in the STEP file are translated
| | quasi_uniform_surface | Geom_BSplineSurface | |
| | rectangular_composite_surface | TopoDS_Compound | Contains *TopoDS_Faces* |
| | curve_bounded_surface | TopoDS_Face | |
+| Tessellations | tessellated_shell | TopoDS_Shell | |
+| | tessellated_solid | TopoDS_Solid | |
+| | triangulated_face | TopoDS_Face | Contains *Poly_Triangulation* |
+| | complex_triangulated_face | TopoDS_Face | Contains *Poly_Triangulation* |
@subsection occt_step_2_5 Tolerance management
@@ -745,6 +784,7 @@ The following default tolerances are used when creating shapes and how they are
* *StepToTopoDS_TranslatePolyLoop* constructs *TopoDS_Edges* in *TopoDS_Wire* with help of class *StepToTopoDS_TranslateEdge*. Their tolerances are not modified inside this method.
* *StepToTopoDS_TranslateFace* constructs *TopoDS_Face* with the initial value of tolerance. *TopoDS_Wire* on *TopoDS_Face* is constructed with the help of classes *StepToTopoDS_TranslatePolyLoop, StepToTopoDS_TranslateEdgeLoop* or *StepToTopoDS_TranslateVertexLoop*.
* *StepToTopoDS_TranslateShell* calls *StepToTopoDS_TranslateFace::Init* for each face. This class does not modify the tolerance value.
+* *StepToTopoDS_TranslateSolid* calls *StepToTopoDS_TranslateFace::Init* for each face. This class does not modify the tolerance value.
* *StepToTopoDS_TranslateCompositeCurve* constructs *TopoDS_Edges* in *TopoDS_Wire* with help of class *BRepAPI_MakeEdge* and have a tolerance 10-7. Pcurves from a STEP file are translated if they are present and if *read.surfacecurve.mode* is not -3. The connection between segments of a composite curve (edges in the wire) is provided by calling method *ShapeFix_Wire::FixConnected()\** with a precision equal to the initial value of tolerance.
* *StepToTopoDS_TranslateCurveBoundedSurface* constructs *TopoDS_Face* with tolerance *Precision::Confusion()*. *TopoDS_Wire* on *TopoDS_Face* is constructed with the help of class *StepToTopoDS_TranslateCompositeCurve*. Missing pcurves are computed using projection algorithm with the help of method *ShapeFix_Face::FixPcurves()*. For resulting face method *ShapeFix::SameParameter()* is called. It calls standard *BRepLib::SameParameter* for each edge in each wire, which can either increase or decrease the tolerances of the edges and vertices. *SameParameter* writes the tolerance corresponding to the real deviation of pcurves from 3D curve which can be less or greater than the tolerance in a STEP file.
* *StepToTopoDS_Builder* a high level class. Its methods perform translation with the help of the classes listed above. If the value of *read.maxprecision.mode* is set to 1 then the tolerance of subshapes of the resulting shape is limited by 0 and *read.maxprecision.val*. Else this class does not change the tolerance value.
@@ -971,6 +1011,34 @@ if(!Interface_Static::SetIVal("write.step.vertex.mode",1))
~~~~
Default value is 0.
+write.step.tessellated:
+
+Boolean flag regulating writing of entities that define tessellated geometry:
+
+* TESSELLATED_SHAPE_REPRESENTATION
+* TESSELLATED_SHELL
+* TESSELLATED_SOLID
+* TRIANGULATED_FACE
+
+Tesselated geometry is taken as objects of Poly_Triangulation type from the active TopoDS_Face triangulation.
+
+* 0 (Off) -- do not write
+* 1 (On) -- write
+* 2 (OnNoBRep) - tessellation is written only for entities for which there is no BRep representation
+
+Read this parameter with:
+~~~~{.cpp}
+Standard_Integer ic = Interface_Static::IVal("write.step.tessellated");
+~~~~
+
+Modify this parameter with:
+~~~~{.cpp}
+if(!Interface_Static::SetIVal("write.step.tessellated",1))
+.. error ..
+~~~~
+
+Default value is 2 (OnNoBep).
+
@subsubsection occt_step_3_3_3 Performing the Open CASCADE Technology shape translation
An OCCT shape can be translated to STEP using one of the following models (shape_representations):
* manifold_solid_brep (advanced_brep_shape_representation)
@@ -1094,6 +1162,7 @@ The table below describes STEP entities, which are created when the assembly str
| | Geom_ToroidalSurface | toroidal_surface or degenerate_toroidal_surface | *degenerate_toroidal_surface* is produced if the minor radius is greater then the major one |
| | Geom_BezierSurface | b_spline_surface_with_knots | |
| | Geom_BsplineSurface | b_spline_surface_with_knots or rational_b_spline_surface | *rational_b_spline_surface* is produced if *Geom_BSplineSurface* is a rational Bspline |
+| Triangulations | Poly_Triangulation | *triangulated_face* is produced for face active triangulation | |
@subsection occt_step_3_5 Tolerance management
diff --git a/src/RWStepAP214/RWStepAP214_GeneralModule.cxx b/src/RWStepAP214/RWStepAP214_GeneralModule.cxx
index 3fd6358580..16c57f14a0 100644
--- a/src/RWStepAP214/RWStepAP214_GeneralModule.cxx
+++ b/src/RWStepAP214/RWStepAP214_GeneralModule.cxx
@@ -1527,6 +1527,37 @@ IMPLEMENT_STANDARD_RTTIEXT(RWStepAP214_GeneralModule,StepData_GeneralModule)
#include
#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
static Standard_Integer catsh,catdr,catstr,catdsc,cataux;
@@ -5901,8 +5932,113 @@ void RWStepAP214_GeneralModule::FillSharedCase(const Standard_Integer CN,
aTool.Share(anEnt, iter);
break;
}
- default : break;
- }
+ case 804:
+ {
+ DeclareAndCast(StepVisual_TessellatedConnectingEdge, anEnt, ent);
+ RWStepVisual_RWTessellatedConnectingEdge aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 805:
+ {
+ DeclareAndCast(StepVisual_TessellatedEdge, anEnt, ent);
+ RWStepVisual_RWTessellatedEdge aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 806:
+ {
+ DeclareAndCast(StepVisual_TessellatedPointSet, anEnt, ent);
+ RWStepVisual_RWTessellatedPointSet aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 807:
+ {
+ DeclareAndCast(StepVisual_TessellatedShapeRepresentation, anEnt, ent);
+ RWStepVisual_RWTessellatedShapeRepresentation aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 808:
+ {
+ DeclareAndCast(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters, anEnt, ent);
+ RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 809:
+ {
+ DeclareAndCast(StepVisual_TessellatedShell, anEnt, ent);
+ RWStepVisual_RWTessellatedShell aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 810:
+ {
+ DeclareAndCast(StepVisual_TessellatedSolid, anEnt, ent);
+ RWStepVisual_RWTessellatedSolid aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 811:
+ {
+ DeclareAndCast(StepVisual_TessellatedStructuredItem, anEnt, ent);
+ RWStepVisual_RWTessellatedStructuredItem aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 812:
+ {
+ DeclareAndCast(StepVisual_TessellatedVertex, anEnt, ent);
+ RWStepVisual_RWTessellatedVertex aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 813:
+ {
+ DeclareAndCast(StepVisual_TessellatedWire, anEnt, ent);
+ RWStepVisual_RWTessellatedWire aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 814:
+ {
+ DeclareAndCast(StepVisual_TriangulatedFace, anEnt, ent);
+ RWStepVisual_RWTriangulatedFace aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 815:
+ {
+ DeclareAndCast(StepVisual_ComplexTriangulatedFace, anEnt, ent);
+ RWStepVisual_RWComplexTriangulatedFace aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 816:
+ {
+ DeclareAndCast(StepVisual_ComplexTriangulatedSurfaceSet, anEnt, ent);
+ RWStepVisual_RWComplexTriangulatedSurfaceSet aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 817:
+ {
+ DeclareAndCast(StepVisual_CubicBezierTessellatedEdge, anEnt, ent);
+ RWStepVisual_RWCubicBezierTessellatedEdge aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ case 818:
+ {
+ DeclareAndCast(StepVisual_CubicBezierTriangulatedFace, anEnt, ent);
+ RWStepVisual_RWCubicBezierTriangulatedFace aTool;
+ aTool.Share(anEnt, iter);
+ }
+ break;
+ default : break;
+ }
}
@@ -8162,7 +8298,52 @@ Standard_Boolean RWStepAP214_GeneralModule::NewVoid
case 803:
ent = new StepVisual_RepositionedTessellatedItem;
break;
-
+ case 804:
+ ent = new StepVisual_TessellatedConnectingEdge;
+ break;
+ case 805:
+ ent = new StepVisual_TessellatedEdge;
+ break;
+ case 806:
+ ent = new StepVisual_TessellatedPointSet;
+ break;
+ case 807:
+ ent = new StepVisual_TessellatedShapeRepresentation;
+ break;
+ case 808:
+ ent = new StepVisual_TessellatedShapeRepresentationWithAccuracyParameters;
+ break;
+ case 809:
+ ent = new StepVisual_TessellatedShell;
+ break;
+ case 810:
+ ent = new StepVisual_TessellatedSolid;
+ break;
+ case 811:
+ ent = new StepVisual_TessellatedStructuredItem;
+ break;
+ case 812:
+ ent = new StepVisual_TessellatedVertex;
+ break;
+ case 813:
+ ent = new StepVisual_TessellatedWire;
+ break;
+ case 814:
+ ent = new StepVisual_TriangulatedFace;
+ break;
+ case 815:
+ ent = new StepVisual_ComplexTriangulatedFace;
+ break;
+ case 816:
+ ent = new StepVisual_ComplexTriangulatedSurfaceSet;
+ break;
+ case 817:
+ ent = new StepVisual_CubicBezierTessellatedEdge;
+ break;
+ case 818:
+ ent = new StepVisual_CubicBezierTriangulatedFace;
+ break;
+
default:
return Standard_False;
}
@@ -8844,6 +9025,21 @@ Standard_Integer RWStepAP214_GeneralModule::CategoryNumber
case 801: return cataux;
case 802: return cataux;
case 803: return cataux;
+ case 804: return cataux;
+ case 805: return cataux;
+ case 806: return cataux;
+ case 807: return cataux;
+ case 808: return cataux;
+ case 809: return cataux;
+ case 810: return cataux;
+ case 811: return cataux;
+ case 812: return cataux;
+ case 813: return cataux;
+ case 814: return cataux;
+ case 815: return cataux;
+ case 816: return cataux;
+ case 817: return cataux;
+ case 818: return cataux;
default : break;
}
return 0;
diff --git a/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx b/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx
index fd15b8f029..a12fe181ae 100644
--- a/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx
+++ b/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx
@@ -440,6 +440,38 @@ IMPLEMENT_STANDARD_RTTIEXT(RWStepAP214_ReadWriteModule,StepData_ReadWriteModule)
#include
#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
#include
#include
#include
@@ -2302,6 +2334,22 @@ static TCollection_AsciiString Reco_UniversalPairWithRange("UNIVERSAL_PAIR_WITH_
static TCollection_AsciiString Reco_KinematicPair("KINEMATIC_PAIR");
static TCollection_AsciiString Reco_MechanismStateRepresentation("MECHANISM_STATE_REPRESENTATION");
+static TCollection_AsciiString Reco_TessellatedConnectingEdge("TESSELLATED_CONNECTING_EDGE");
+static TCollection_AsciiString Reco_TessellatedEdge("TESSELLATED_EDGE");
+static TCollection_AsciiString Reco_TessellatedPointSet("TESSELLATED_POINT_SET");
+static TCollection_AsciiString Reco_TessellatedShapeRepresentation("TESSELLATED_SHAPE_REPRESENTATION");
+static TCollection_AsciiString Reco_TessellatedShapeRepresentationWithAccuracyParameters("TESSELLATED_SHAPE_REPRESENTATION_WITH_ACCURACY_PARAMETERS");
+static TCollection_AsciiString Reco_TessellatedShell("TESSELLATED_SHELL");
+static TCollection_AsciiString Reco_TessellatedSolid("TESSELLATED_SOLID");
+static TCollection_AsciiString Reco_TessellatedStructuredItem("TESSELLATED_STRUCTURED_ITEM");
+static TCollection_AsciiString Reco_TessellatedVertex("TESSELLATED_VERTEX");
+static TCollection_AsciiString Reco_TessellatedWire("TESSELLATED_WIRE");
+static TCollection_AsciiString Reco_TriangulatedFace("TRIANGULATED_FACE");
+static TCollection_AsciiString Reco_ComplexTriangulatedFace("COMPLEX_TRIANGULATED_FACE");
+static TCollection_AsciiString Reco_ComplexTriangulatedSurfaceSet("COMPLEX_TRIANGULATED_SURFACE_SET");
+static TCollection_AsciiString Reco_CubicBezierTessellatedEdge("CUBIC_BEZIER_TESSELLATED_EDGE");
+static TCollection_AsciiString Reco_CubicBezierTriangulatedFace("CUBIC_BEZIER_TRIANGULATED_FACE");
+
// -- Definition of the libraries --
static NCollection_DataMap typenums;
@@ -3042,6 +3090,21 @@ RWStepAP214_ReadWriteModule::RWStepAP214_ReadWriteModule ()
typenums.Bind(Reco_KinematicPair, 799);
typenums.Bind(Reco_MechanismStateRepresentation, 801);
typenums.Bind(Reco_RepositionedTessellatedItem, 803);
+ typenums.Bind(Reco_TessellatedConnectingEdge, 804);
+ typenums.Bind(Reco_TessellatedEdge, 805);
+ typenums.Bind(Reco_TessellatedPointSet, 806);
+ typenums.Bind(Reco_TessellatedShapeRepresentation, 807);
+ typenums.Bind(Reco_TessellatedShapeRepresentationWithAccuracyParameters, 808);
+ typenums.Bind(Reco_TessellatedShell, 809);
+ typenums.Bind(Reco_TessellatedSolid, 810);
+ typenums.Bind(Reco_TessellatedStructuredItem, 811);
+ typenums.Bind(Reco_TessellatedVertex, 812);
+ typenums.Bind(Reco_TessellatedWire, 813);
+ typenums.Bind(Reco_TriangulatedFace, 814);
+ typenums.Bind(Reco_ComplexTriangulatedFace, 815);
+ typenums.Bind(Reco_ComplexTriangulatedSurfaceSet, 816);
+ typenums.Bind(Reco_CubicBezierTessellatedEdge, 817);
+ typenums.Bind(Reco_CubicBezierTriangulatedFace, 818);
// SHORT NAMES
@@ -5014,6 +5077,21 @@ const TCollection_AsciiString& RWStepAP214_ReadWriteModule::StepType
case 799: return Reco_KinematicPair;
case 801: return Reco_MechanismStateRepresentation;
case 803: return Reco_RepositionedTessellatedItem;
+ case 804: return Reco_TessellatedConnectingEdge;
+ case 805: return Reco_TessellatedEdge;
+ case 806: return Reco_TessellatedPointSet;
+ case 807: return Reco_TessellatedShapeRepresentation;
+ case 808: return Reco_TessellatedShapeRepresentationWithAccuracyParameters;
+ case 809: return Reco_TessellatedShell;
+ case 810: return Reco_TessellatedSolid;
+ case 811: return Reco_TessellatedStructuredItem;
+ case 812: return Reco_TessellatedVertex;
+ case 813: return Reco_TessellatedWire;
+ case 814: return Reco_TriangulatedFace;
+ case 815: return Reco_ComplexTriangulatedFace;
+ case 816: return Reco_ComplexTriangulatedSurfaceSet;
+ case 817: return Reco_CubicBezierTessellatedEdge;
+ case 818: return Reco_CubicBezierTriangulatedFace;
default : return PasReco;
}
}
@@ -10511,7 +10589,111 @@ void RWStepAP214_ReadWriteModule::ReadStep(const Standard_Integer CN,
aTool.ReadStep(data, num, ach, anEnt);
break;
}
-
+ case 804:
+ {
+ DeclareAndCast(StepVisual_TessellatedConnectingEdge, anEnt, ent);
+ RWStepVisual_RWTessellatedConnectingEdge aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 805:
+ {
+ DeclareAndCast(StepVisual_TessellatedEdge, anEnt, ent);
+ RWStepVisual_RWTessellatedEdge aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 806:
+ {
+ DeclareAndCast(StepVisual_TessellatedPointSet, anEnt, ent);
+ RWStepVisual_RWTessellatedPointSet aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 807:
+ {
+ DeclareAndCast(StepVisual_TessellatedShapeRepresentation, anEnt, ent);
+ RWStepVisual_RWTessellatedShapeRepresentation aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 808:
+ {
+ DeclareAndCast(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters, anEnt, ent);
+ RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 809:
+ {
+ DeclareAndCast(StepVisual_TessellatedShell, anEnt, ent);
+ RWStepVisual_RWTessellatedShell aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 810:
+ {
+ DeclareAndCast(StepVisual_TessellatedSolid, anEnt, ent);
+ RWStepVisual_RWTessellatedSolid aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 811:
+ {
+ DeclareAndCast(StepVisual_TessellatedStructuredItem, anEnt, ent);
+ RWStepVisual_RWTessellatedStructuredItem aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 812:
+ {
+ DeclareAndCast(StepVisual_TessellatedVertex, anEnt, ent);
+ RWStepVisual_RWTessellatedVertex aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 813:
+ {
+ DeclareAndCast(StepVisual_TessellatedWire, anEnt, ent);
+ RWStepVisual_RWTessellatedWire aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 814:
+ {
+ DeclareAndCast(StepVisual_TriangulatedFace, anEnt, ent);
+ RWStepVisual_RWTriangulatedFace aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 815:
+ {
+ DeclareAndCast(StepVisual_ComplexTriangulatedFace, anEnt, ent);
+ RWStepVisual_RWComplexTriangulatedFace aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 816:
+ {
+ DeclareAndCast(StepVisual_ComplexTriangulatedSurfaceSet, anEnt, ent);
+ RWStepVisual_RWComplexTriangulatedSurfaceSet aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 817:
+ {
+ DeclareAndCast(StepVisual_CubicBezierTessellatedEdge, anEnt, ent);
+ RWStepVisual_RWCubicBezierTessellatedEdge aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
+ case 818:
+ {
+ DeclareAndCast(StepVisual_CubicBezierTriangulatedFace, anEnt, ent);
+ RWStepVisual_RWCubicBezierTriangulatedFace aTool;
+ aTool.ReadStep(data, num, ach, anEnt);
+ }
+ break;
default:
ach->AddFail("Type Mismatch when reading - Entity");
}
@@ -15948,7 +16130,115 @@ void RWStepAP214_ReadWriteModule::WriteStep(const Standard_Integer CN,
aTool.WriteStep(SW, anEnt);
break;
}
- default:
+
+ // --------------------------------------------------------------------
+
+ case 804:
+ {
+ DeclareAndCast(StepVisual_TessellatedConnectingEdge, anEnt, ent);
+ RWStepVisual_RWTessellatedConnectingEdge aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 805:
+ {
+ DeclareAndCast(StepVisual_TessellatedEdge, anEnt, ent);
+ RWStepVisual_RWTessellatedEdge aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 806:
+ {
+ DeclareAndCast(StepVisual_TessellatedPointSet, anEnt, ent);
+ RWStepVisual_RWTessellatedPointSet aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 807:
+ {
+ DeclareAndCast(StepVisual_TessellatedShapeRepresentation, anEnt, ent);
+ RWStepVisual_RWTessellatedShapeRepresentation aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 808:
+ {
+ DeclareAndCast(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters, anEnt, ent);
+ RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 809:
+ {
+ DeclareAndCast(StepVisual_TessellatedShell, anEnt, ent);
+ RWStepVisual_RWTessellatedShell aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 810:
+ {
+ DeclareAndCast(StepVisual_TessellatedSolid, anEnt, ent);
+ RWStepVisual_RWTessellatedSolid aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 811:
+ {
+ DeclareAndCast(StepVisual_TessellatedStructuredItem, anEnt, ent);
+ RWStepVisual_RWTessellatedStructuredItem aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 812:
+ {
+ DeclareAndCast(StepVisual_TessellatedVertex, anEnt, ent);
+ RWStepVisual_RWTessellatedVertex aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 813:
+ {
+ DeclareAndCast(StepVisual_TessellatedWire, anEnt, ent);
+ RWStepVisual_RWTessellatedWire aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 814:
+ {
+ DeclareAndCast(StepVisual_TriangulatedFace, anEnt, ent);
+ RWStepVisual_RWTriangulatedFace aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 815:
+ {
+ DeclareAndCast(StepVisual_ComplexTriangulatedFace, anEnt, ent);
+ RWStepVisual_RWComplexTriangulatedFace aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 816:
+ {
+ DeclareAndCast(StepVisual_ComplexTriangulatedSurfaceSet, anEnt, ent);
+ RWStepVisual_RWComplexTriangulatedSurfaceSet aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 817:
+ {
+ DeclareAndCast(StepVisual_CubicBezierTessellatedEdge, anEnt, ent);
+ RWStepVisual_RWCubicBezierTessellatedEdge aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ case 818:
+ {
+ DeclareAndCast(StepVisual_CubicBezierTriangulatedFace, anEnt, ent);
+ RWStepVisual_RWCubicBezierTriangulatedFace aTool;
+ aTool.WriteStep(SW, anEnt);
+ }
+ break;
+ default:
return;
}
}
diff --git a/src/RWStepVisual/FILES b/src/RWStepVisual/FILES
index 5c396ba9ae..c1c2ee0ab6 100644
--- a/src/RWStepVisual/FILES
+++ b/src/RWStepVisual/FILES
@@ -160,5 +160,33 @@ RWStepVisual_RWCoordinatesList.hxx
RWStepVisual_RWCoordinatesList.cxx
RWStepVisual_RWTessellatedCurveSet.hxx
RWStepVisual_RWTessellatedCurveSet.cxx
-
-
+RWStepVisual_RWComplexTriangulatedFace.cxx
+RWStepVisual_RWComplexTriangulatedFace.hxx
+RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx
+RWStepVisual_RWComplexTriangulatedSurfaceSet.hxx
+RWStepVisual_RWCubicBezierTessellatedEdge.cxx
+RWStepVisual_RWCubicBezierTessellatedEdge.hxx
+RWStepVisual_RWCubicBezierTriangulatedFace.cxx
+RWStepVisual_RWCubicBezierTriangulatedFace.hxx
+RWStepVisual_RWTessellatedConnectingEdge.cxx
+RWStepVisual_RWTessellatedConnectingEdge.hxx
+RWStepVisual_RWTessellatedEdge.cxx
+RWStepVisual_RWTessellatedEdge.hxx
+RWStepVisual_RWTessellatedPointSet.cxx
+RWStepVisual_RWTessellatedPointSet.hxx
+RWStepVisual_RWTessellatedShapeRepresentation.cxx
+RWStepVisual_RWTessellatedShapeRepresentation.hxx
+RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx
+RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.hxx
+RWStepVisual_RWTessellatedShell.cxx
+RWStepVisual_RWTessellatedShell.hxx
+RWStepVisual_RWTessellatedSolid.cxx
+RWStepVisual_RWTessellatedSolid.hxx
+RWStepVisual_RWTessellatedStructuredItem.cxx
+RWStepVisual_RWTessellatedStructuredItem.hxx
+RWStepVisual_RWTessellatedVertex.cxx
+RWStepVisual_RWTessellatedVertex.hxx
+RWStepVisual_RWTessellatedWire.cxx
+RWStepVisual_RWTessellatedWire.hxx
+RWStepVisual_RWTriangulatedFace.cxx
+RWStepVisual_RWTriangulatedFace.hxx
diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx
new file mode 100644
index 0000000000..266d02d91a
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx
@@ -0,0 +1,271 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWComplexTriangulatedFace
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWComplexTriangulatedFace::RWStepVisual_RWComplexTriangulatedFace() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWComplexTriangulatedFace::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_ComplexTriangulatedFace)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 8, theCheck, "complex_triangulated_face"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Inherited fields of TessellatedFace
+
+ Handle(StepVisual_CoordinatesList) aTessellatedFace_Coordinates;
+ theData->ReadEntity(theNum, 2, "tessellated_face.coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aTessellatedFace_Coordinates);
+
+ Standard_Integer aTessellatedFace_Pnmax;
+ theData->ReadInteger(theNum, 3, "tessellated_face.pnmax", theCheck, aTessellatedFace_Pnmax);
+
+ Handle(TColStd_HArray2OfReal) aTessellatedFace_Normals;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "tessellated_face.normals", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub4,1));
+ aTessellatedFace_Normals = new TColStd_HArray2OfReal(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj4 = 0;
+ if ( theData->ReadSubList (sub4, i0, "sub-part(tessellated_face.normals)", theCheck, subj4) ) {
+ Standard_Integer num4 = subj4;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Real anIt0;
+ theData->ReadReal(num4, j0, "real", theCheck, anIt0);
+ aTessellatedFace_Normals->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ StepVisual_FaceOrSurface aTessellatedFace_GeometricLink;
+ Standard_Boolean hasTessellatedFace_GeometricLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 5))
+ {
+ theData->ReadEntity(theNum, 5, "tessellated_face.geometric_link", theCheck, aTessellatedFace_GeometricLink);
+ }
+ else
+ {
+ hasTessellatedFace_GeometricLink = Standard_False;
+ aTessellatedFace_GeometricLink = StepVisual_FaceOrSurface();
+ }
+
+ // Own fields of ComplexTriangulatedFace
+
+ Handle(TColStd_HArray1OfInteger) aPnindex;
+ Standard_Integer sub6 = 0;
+ if (theData->ReadSubList(theNum, 6, "pnindex", theCheck, sub6))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub6);
+ aPnindex = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub6;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aPnindex->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(TColStd_HArray2OfInteger) aTriangleStrips;
+ Standard_Integer sub7 = 0;
+ if (theData->ReadSubList(theNum, 7, "triangle_strips", theCheck, sub7))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub7);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub7,1));
+ aTriangleStrips = new TColStd_HArray2OfInteger(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj7 = 0;
+ if ( theData->ReadSubList (sub7, i0, "sub-part(triangle_strips)", theCheck, subj7) ) {
+ Standard_Integer num4 = subj7;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num4, j0, "integer", theCheck, anIt0);
+ aTriangleStrips->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ Handle(TColStd_HArray2OfInteger) aTriangleFans;
+ Standard_Integer sub8 = 0;
+ if (theData->ReadSubList(theNum, 8, "triangle_fans", theCheck, sub8))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub8);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub8,1));
+ aTriangleFans = new TColStd_HArray2OfInteger(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj8 = 0;
+ if ( theData->ReadSubList (sub8, i0, "sub-part(triangle_fans)", theCheck, subj8) ) {
+ Standard_Integer num4 = subj8;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num4, j0, "integer", theCheck, anIt0);
+ aTriangleFans->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aTessellatedFace_Coordinates, aTessellatedFace_Pnmax, aTessellatedFace_Normals, hasTessellatedFace_GeometricLink, aTessellatedFace_GeometricLink, aPnindex, aTriangleStrips, aTriangleFans);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWComplexTriangulatedFace::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_ComplexTriangulatedFace)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedFace
+
+ theSW.Send(theEnt->Coordinates());
+
+ theSW.Send(theEnt->Pnmax());
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->Normals()->RowLength(); i3++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j3 = 1; j3 <= theEnt->Normals()->ColLength(); j3++)
+ {
+ Standard_Real Var0 = theEnt->Normals()->Value(i3,j3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+
+ if (theEnt->HasGeometricLink())
+ {
+ theSW.Send(theEnt->GeometricLink().Value());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+
+ // Own fields of ComplexTriangulatedFace
+
+ theSW.OpenSub();
+ for (Standard_Integer i5 = 1; i5 <= theEnt->Pnindex()->Length(); i5++)
+ {
+ Standard_Integer Var0 = theEnt->Pnindex()->Value(i5);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ theSW.OpenSub();
+ for (Standard_Integer i6 = 1; i6 <= theEnt->TriangleStrips()->RowLength(); i6++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j6 = 1; j6 <= theEnt->TriangleStrips()->ColLength(); j6++)
+ {
+ Standard_Integer Var0 = theEnt->TriangleStrips()->Value(i6,j6);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+
+ theSW.OpenSub();
+ for (Standard_Integer i7 = 1; i7 <= theEnt->TriangleFans()->RowLength(); i7++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j7 = 1; j7 <= theEnt->TriangleFans()->ColLength(); j7++)
+ {
+ Standard_Integer Var0 = theEnt->TriangleFans()->Value(i7,j7);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWComplexTriangulatedFace::Share (const Handle(StepVisual_ComplexTriangulatedFace)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Inherited fields of TessellatedFace
+
+ theIter.AddItem(theEnt->StepVisual_TessellatedFace::Coordinates());
+
+ if (theEnt->StepVisual_TessellatedFace::HasGeometricLink())
+ {
+ theIter.AddItem(theEnt->StepVisual_TessellatedFace::GeometricLink().Value());
+ }
+
+ // Own fields of ComplexTriangulatedFace
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.hxx b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.hxx
new file mode 100644
index 0000000000..d87a02ccb9
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWComplexTriangulatedFace_HeaderFile_
+#define _RWStepVisual_RWComplexTriangulatedFace_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_ComplexTriangulatedFace;
+
+//! Read & Write tool for ComplexTriangulatedFace
+class RWStepVisual_RWComplexTriangulatedFace
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWComplexTriangulatedFace();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_ComplexTriangulatedFace)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_ComplexTriangulatedFace)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_ComplexTriangulatedFace)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWComplexTriangulatedFace_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx
new file mode 100644
index 0000000000..e8a80734b9
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx
@@ -0,0 +1,247 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWComplexTriangulatedSurfaceSet
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWComplexTriangulatedSurfaceSet::RWStepVisual_RWComplexTriangulatedSurfaceSet() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWComplexTriangulatedSurfaceSet::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_ComplexTriangulatedSurfaceSet)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 7, theCheck, "complex_triangulated_surface_set"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Inherited fields of TessellatedSurfaceSet
+
+ Handle(StepVisual_CoordinatesList) aTessellatedSurfaceSet_Coordinates;
+ theData->ReadEntity(theNum, 2, "tessellated_surface_set.coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aTessellatedSurfaceSet_Coordinates);
+
+ Standard_Integer aTessellatedSurfaceSet_Pnmax;
+ theData->ReadInteger(theNum, 3, "tessellated_surface_set.pnmax", theCheck, aTessellatedSurfaceSet_Pnmax);
+
+ Handle(TColStd_HArray2OfReal) aTessellatedSurfaceSet_Normals;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "tessellated_surface_set.normals", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub4,1));
+ aTessellatedSurfaceSet_Normals = new TColStd_HArray2OfReal(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj4 = 0;
+ if ( theData->ReadSubList (sub4, i0, "sub-part(tessellated_surface_set.normals)", theCheck, subj4) ) {
+ Standard_Integer num4 = subj4;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Real anIt0;
+ theData->ReadReal(num4, j0, "real", theCheck, anIt0);
+ aTessellatedSurfaceSet_Normals->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ // Own fields of ComplexTriangulatedSurfaceSet
+
+ Handle(TColStd_HArray1OfInteger) aPnindex;
+ Standard_Integer sub5 = 0;
+ if (theData->ReadSubList(theNum, 5, "pnindex", theCheck, sub5))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub5);
+ aPnindex = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub5;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aPnindex->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(TColStd_HArray2OfInteger) aTriangleStrips;
+ Standard_Integer sub6 = 0;
+ if (theData->ReadSubList(theNum, 6, "triangle_strips", theCheck, sub6))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub6);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub6,1));
+ aTriangleStrips = new TColStd_HArray2OfInteger(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj6 = 0;
+ if ( theData->ReadSubList (sub6, i0, "sub-part(triangle_strips)", theCheck, subj6) ) {
+ Standard_Integer num4 = subj6;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num4, j0, "integer", theCheck, anIt0);
+ aTriangleStrips->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ Handle(TColStd_HArray2OfInteger) aTriangleFans;
+ Standard_Integer sub7 = 0;
+ if (theData->ReadSubList(theNum, 7, "triangle_fans", theCheck, sub7))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub7);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub7,1));
+ aTriangleFans = new TColStd_HArray2OfInteger(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj7 = 0;
+ if ( theData->ReadSubList (sub7, i0, "sub-part(triangle_fans)", theCheck, subj7) ) {
+ Standard_Integer num4 = subj7;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num4, j0, "integer", theCheck, anIt0);
+ aTriangleFans->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aTessellatedSurfaceSet_Coordinates, aTessellatedSurfaceSet_Pnmax, aTessellatedSurfaceSet_Normals, aPnindex, aTriangleStrips, aTriangleFans);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWComplexTriangulatedSurfaceSet::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_ComplexTriangulatedSurfaceSet)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedSurfaceSet
+
+ theSW.Send(theEnt->Coordinates());
+
+ theSW.Send(theEnt->Pnmax());
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->Normals()->RowLength(); i3++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j3 = 1; j3 <= theEnt->Normals()->ColLength(); j3++)
+ {
+ Standard_Real Var0 = theEnt->Normals()->Value(i3,j3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+
+ // Own fields of ComplexTriangulatedSurfaceSet
+
+ theSW.OpenSub();
+ for (Standard_Integer i4 = 1; i4 <= theEnt->Pnindex()->Length(); i4++)
+ {
+ Standard_Integer Var0 = theEnt->Pnindex()->Value(i4);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ theSW.OpenSub();
+ for (Standard_Integer i5 = 1; i5 <= theEnt->TriangleStrips()->RowLength(); i5++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j5 = 1; j5 <= theEnt->TriangleStrips()->ColLength(); j5++)
+ {
+ Standard_Integer Var0 = theEnt->TriangleStrips()->Value(i5,j5);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+
+ theSW.OpenSub();
+ for (Standard_Integer i6 = 1; i6 <= theEnt->TriangleFans()->RowLength(); i6++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j6 = 1; j6 <= theEnt->TriangleFans()->ColLength(); j6++)
+ {
+ Standard_Integer Var0 = theEnt->TriangleFans()->Value(i6,j6);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWComplexTriangulatedSurfaceSet::Share(
+ const Handle(StepVisual_ComplexTriangulatedSurfaceSet)&theEnt,
+Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Inherited fields of TessellatedSurfaceSet
+
+ theIter.AddItem(theEnt->StepVisual_TessellatedSurfaceSet::Coordinates());
+
+ // Own fields of ComplexTriangulatedSurfaceSet
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.hxx b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.hxx
new file mode 100644
index 0000000000..2564dee6b4
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWComplexTriangulatedSurfaceSet_HeaderFile_
+#define _RWStepVisual_RWComplexTriangulatedSurfaceSet_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_ComplexTriangulatedSurfaceSet;
+
+//! Read & Write tool for ComplexTriangulatedSurfaceSet
+class RWStepVisual_RWComplexTriangulatedSurfaceSet
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWComplexTriangulatedSurfaceSet();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_ComplexTriangulatedSurfaceSet)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_ComplexTriangulatedSurfaceSet)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_ComplexTriangulatedSurfaceSet)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWComplexTriangulatedSurfaceSet_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx b/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx
new file mode 100644
index 0000000000..b7a18ac584
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx
@@ -0,0 +1,151 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWCubicBezierTessellatedEdge
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWCubicBezierTessellatedEdge::RWStepVisual_RWCubicBezierTessellatedEdge() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWCubicBezierTessellatedEdge::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_CubicBezierTessellatedEdge)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 4, theCheck, "cubic_bezier_tessellated_edge"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Inherited fields of TessellatedEdge
+
+ Handle(StepVisual_CoordinatesList) aTessellatedEdge_Coordinates;
+ theData->ReadEntity(theNum, 2, "tessellated_edge.coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aTessellatedEdge_Coordinates);
+
+ StepVisual_EdgeOrCurve aTessellatedEdge_GeometricLink;
+ Standard_Boolean hasTessellatedEdge_GeometricLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "tessellated_edge.geometric_link", theCheck, aTessellatedEdge_GeometricLink);
+ }
+ else
+ {
+ hasTessellatedEdge_GeometricLink = Standard_False;
+ aTessellatedEdge_GeometricLink = StepVisual_EdgeOrCurve();
+ }
+
+ Handle(TColStd_HArray1OfInteger) aTessellatedEdge_LineStrip;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "tessellated_edge.line_strip", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ aTessellatedEdge_LineStrip = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub4;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aTessellatedEdge_LineStrip->SetValue(i0, anIt0);
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aTessellatedEdge_Coordinates, hasTessellatedEdge_GeometricLink, aTessellatedEdge_GeometricLink, aTessellatedEdge_LineStrip);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWCubicBezierTessellatedEdge::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_CubicBezierTessellatedEdge)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedEdge
+
+ theSW.Send(theEnt->Coordinates());
+
+ if (theEnt->HasGeometricLink())
+ {
+ theSW.Send(theEnt->GeometricLink().Value());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->LineStrip()->Length(); i3++)
+ {
+ Standard_Integer Var0 = theEnt->LineStrip()->Value(i3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWCubicBezierTessellatedEdge::Share(
+ const Handle(StepVisual_CubicBezierTessellatedEdge)&theEnt,
+Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Inherited fields of TessellatedEdge
+
+ theIter.AddItem(theEnt->StepVisual_TessellatedEdge::Coordinates());
+
+ if (theEnt->StepVisual_TessellatedEdge::HasGeometricLink())
+ {
+ theIter.AddItem(theEnt->StepVisual_TessellatedEdge::GeometricLink().Value());
+ }
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.hxx b/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.hxx
new file mode 100644
index 0000000000..20d41bd22d
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWCubicBezierTessellatedEdge_HeaderFile_
+#define _RWStepVisual_RWCubicBezierTessellatedEdge_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_CubicBezierTessellatedEdge;
+
+//! Read & Write tool for CubicBezierTessellatedEdge
+class RWStepVisual_RWCubicBezierTessellatedEdge
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWCubicBezierTessellatedEdge();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_CubicBezierTessellatedEdge)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_CubicBezierTessellatedEdge)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_CubicBezierTessellatedEdge)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWCubicBezierTessellatedEdge_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx b/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx
new file mode 100644
index 0000000000..4cd7be5f92
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx
@@ -0,0 +1,215 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWCubicBezierTriangulatedFace
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWCubicBezierTriangulatedFace::RWStepVisual_RWCubicBezierTriangulatedFace() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWCubicBezierTriangulatedFace::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_CubicBezierTriangulatedFace)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 6, theCheck, "cubic_bezier_triangulated_face"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Inherited fields of TessellatedFace
+
+ Handle(StepVisual_CoordinatesList) aTessellatedFace_Coordinates;
+ theData->ReadEntity(theNum, 2, "tessellated_face.coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aTessellatedFace_Coordinates);
+
+ Standard_Integer aTessellatedFace_Pnmax;
+ theData->ReadInteger(theNum, 3, "tessellated_face.pnmax", theCheck, aTessellatedFace_Pnmax);
+
+ Handle(TColStd_HArray2OfReal) aTessellatedFace_Normals;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "tessellated_face.normals", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub4,1));
+ aTessellatedFace_Normals = new TColStd_HArray2OfReal(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj4 = 0;
+ if ( theData->ReadSubList (sub4, i0, "sub-part(tessellated_face.normals)", theCheck, subj4) ) {
+ Standard_Integer num4 = subj4;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Real anIt0;
+ theData->ReadReal(num4, j0, "real", theCheck, anIt0);
+ aTessellatedFace_Normals->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ StepVisual_FaceOrSurface aTessellatedFace_GeometricLink;
+ Standard_Boolean hasTessellatedFace_GeometricLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 5))
+ {
+ theData->ReadEntity(theNum, 5, "tessellated_face.geometric_link", theCheck, aTessellatedFace_GeometricLink);
+ }
+ else
+ {
+ hasTessellatedFace_GeometricLink = Standard_False;
+ aTessellatedFace_GeometricLink = StepVisual_FaceOrSurface();
+ }
+
+ // Own fields of CubicBezierTriangulatedFace
+
+ Handle(TColStd_HArray2OfInteger) aCtriangles;
+ Standard_Integer sub6 = 0;
+ if (theData->ReadSubList(theNum, 6, "ctriangles", theCheck, sub6))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub6);
+ Standard_Integer nbj0 = theData->NbParams(theData->ParamNumber(sub6,1));
+ aCtriangles = new TColStd_HArray2OfInteger(1, nb0, 1, nbj0);
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer subj6 = 0;
+ if ( theData->ReadSubList (sub6, i0, "sub-part(ctriangles)", theCheck, subj6) ) {
+ Standard_Integer num4 = subj6;
+ for (Standard_Integer j0 = 1; j0 <= nbj0; j0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num4, j0, "integer", theCheck, anIt0);
+ aCtriangles->SetValue(i0,j0, anIt0);
+ }
+ }
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aTessellatedFace_Coordinates, aTessellatedFace_Pnmax, aTessellatedFace_Normals, hasTessellatedFace_GeometricLink, aTessellatedFace_GeometricLink, aCtriangles);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWCubicBezierTriangulatedFace::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_CubicBezierTriangulatedFace)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedFace
+
+ theSW.Send(theEnt->Coordinates());
+
+ theSW.Send(theEnt->Pnmax());
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->Normals()->RowLength(); i3++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j3 = 1; j3 <= theEnt->Normals()->ColLength(); j3++)
+ {
+ Standard_Real Var0 = theEnt->Normals()->Value(i3,j3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+
+ if (theEnt->HasGeometricLink())
+ {
+ theSW.Send(theEnt->GeometricLink().Value());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+
+ // Own fields of CubicBezierTriangulatedFace
+
+ theSW.OpenSub();
+ for (Standard_Integer i5 = 1; i5 <= theEnt->Ctriangles()->RowLength(); i5++)
+ {
+ theSW.NewLine(Standard_False);
+ theSW.OpenSub();
+ for (Standard_Integer j5 = 1; j5 <= theEnt->Ctriangles()->ColLength(); j5++)
+ {
+ Standard_Integer Var0 = theEnt->Ctriangles()->Value(i5,j5);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWCubicBezierTriangulatedFace::Share(
+ const Handle(StepVisual_CubicBezierTriangulatedFace)&theEnt,
+Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Inherited fields of TessellatedFace
+
+ theIter.AddItem(theEnt->StepVisual_TessellatedFace::Coordinates());
+
+ if (theEnt->StepVisual_TessellatedFace::HasGeometricLink())
+ {
+ theIter.AddItem(theEnt->StepVisual_TessellatedFace::GeometricLink().Value());
+ }
+
+ // Own fields of CubicBezierTriangulatedFace
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.hxx b/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.hxx
new file mode 100644
index 0000000000..8825c1c905
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:11 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWCubicBezierTriangulatedFace_HeaderFile_
+#define _RWStepVisual_RWCubicBezierTriangulatedFace_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_CubicBezierTriangulatedFace;
+
+//! Read & Write tool for CubicBezierTriangulatedFace
+class RWStepVisual_RWCubicBezierTriangulatedFace
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWCubicBezierTriangulatedFace();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_CubicBezierTriangulatedFace)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_CubicBezierTriangulatedFace)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_CubicBezierTriangulatedFace)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWCubicBezierTriangulatedFace_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx
new file mode 100644
index 0000000000..ccf65f3995
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx
@@ -0,0 +1,226 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedConnectingEdge
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedConnectingEdge::RWStepVisual_RWTessellatedConnectingEdge() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedConnectingEdge::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedConnectingEdge)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 9, theCheck, "tessellated_connecting_edge"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Inherited fields of TessellatedEdge
+
+ Handle(StepVisual_CoordinatesList) aTessellatedEdge_Coordinates;
+ theData->ReadEntity(theNum, 2, "tessellated_edge.coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aTessellatedEdge_Coordinates);
+
+ StepVisual_EdgeOrCurve aTessellatedEdge_GeometricLink;
+ Standard_Boolean hasTessellatedEdge_GeometricLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "tessellated_edge.geometric_link", theCheck, aTessellatedEdge_GeometricLink);
+ }
+ else
+ {
+ hasTessellatedEdge_GeometricLink = Standard_False;
+ aTessellatedEdge_GeometricLink = StepVisual_EdgeOrCurve();
+ }
+
+ Handle(TColStd_HArray1OfInteger) aTessellatedEdge_LineStrip;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "tessellated_edge.line_strip", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ aTessellatedEdge_LineStrip = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub4;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aTessellatedEdge_LineStrip->SetValue(i0, anIt0);
+ }
+ }
+
+ // Own fields of TessellatedConnectingEdge
+
+ StepData_Logical aSmooth;
+ theData->ReadLogical(theNum, 5, "smooth", theCheck, aSmooth);
+
+ Handle(StepVisual_TessellatedFace) aFace1;
+ theData->ReadEntity(theNum, 6, "face1", theCheck,
+ STANDARD_TYPE(StepVisual_TessellatedFace), aFace1);
+
+ Handle(StepVisual_TessellatedFace) aFace2;
+ theData->ReadEntity(theNum, 7, "face2", theCheck,
+ STANDARD_TYPE(StepVisual_TessellatedFace), aFace2);
+
+ Handle(TColStd_HArray1OfInteger) aLineStripFace1;
+ Standard_Integer sub8 = 0;
+ if (theData->ReadSubList(theNum, 8, "line_strip_face1", theCheck, sub8))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub8);
+ aLineStripFace1 = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub8;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aLineStripFace1->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(TColStd_HArray1OfInteger) aLineStripFace2;
+ Standard_Integer sub9 = 0;
+ if (theData->ReadSubList(theNum, 9, "line_strip_face2", theCheck, sub9))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub9);
+ aLineStripFace2 = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub9;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aLineStripFace2->SetValue(i0, anIt0);
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aTessellatedEdge_Coordinates, hasTessellatedEdge_GeometricLink, aTessellatedEdge_GeometricLink, aTessellatedEdge_LineStrip, aSmooth, aFace1, aFace2, aLineStripFace1, aLineStripFace2);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedConnectingEdge::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedConnectingEdge)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedEdge
+
+ theSW.Send(theEnt->Coordinates());
+
+ if (theEnt->HasGeometricLink())
+ {
+ theSW.Send(theEnt->GeometricLink().Value());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->LineStrip()->Length(); i3++)
+ {
+ Standard_Integer Var0 = theEnt->LineStrip()->Value(i3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ // Own fields of TessellatedConnectingEdge
+
+ theSW.SendLogical(theEnt->Smooth());
+
+ theSW.Send(theEnt->Face1());
+
+ theSW.Send(theEnt->Face2());
+
+ theSW.OpenSub();
+ for (Standard_Integer i7 = 1; i7 <= theEnt->LineStripFace1()->Length(); i7++)
+ {
+ Standard_Integer Var0 = theEnt->LineStripFace1()->Value(i7);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ theSW.OpenSub();
+ for (Standard_Integer i8 = 1; i8 <= theEnt->LineStripFace2()->Length(); i8++)
+ {
+ Standard_Integer Var0 = theEnt->LineStripFace2()->Value(i8);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedConnectingEdge::Share(
+ const Handle(StepVisual_TessellatedConnectingEdge)&theEnt,
+Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Inherited fields of TessellatedEdge
+
+ theIter.AddItem(theEnt->StepVisual_TessellatedEdge::Coordinates());
+
+ if (theEnt->StepVisual_TessellatedEdge::HasGeometricLink())
+ {
+ theIter.AddItem(theEnt->StepVisual_TessellatedEdge::GeometricLink().Value());
+ }
+
+ // Own fields of TessellatedConnectingEdge
+
+ theIter.AddItem(theEnt->Face1());
+
+ theIter.AddItem(theEnt->Face2());
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.hxx
new file mode 100644
index 0000000000..a1eb97f4c3
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedConnectingEdge_HeaderFile_
+#define _RWStepVisual_RWTessellatedConnectingEdge_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedConnectingEdge;
+
+//! Read & Write tool for TessellatedConnectingEdge
+class RWStepVisual_RWTessellatedConnectingEdge
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedConnectingEdge();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedConnectingEdge)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedConnectingEdge)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedConnectingEdge)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedConnectingEdge_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx
new file mode 100644
index 0000000000..0723e7c997
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx
@@ -0,0 +1,148 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedEdge
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedEdge::RWStepVisual_RWTessellatedEdge() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedEdge::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedEdge)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 4, theCheck, "tessellated_edge"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Own fields of TessellatedEdge
+
+ Handle(StepVisual_CoordinatesList) aCoordinates;
+ theData->ReadEntity(theNum, 2, "coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aCoordinates);
+
+ StepVisual_EdgeOrCurve aGeometricLink;
+ Standard_Boolean hasGeometricLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "geometric_link", theCheck, aGeometricLink);
+ }
+ else
+ {
+ hasGeometricLink = Standard_False;
+ aGeometricLink = StepVisual_EdgeOrCurve();
+ }
+
+ Handle(TColStd_HArray1OfInteger) aLineStrip;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "line_strip", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ aLineStrip = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub4;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aLineStrip->SetValue(i0, anIt0);
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aCoordinates, hasGeometricLink, aGeometricLink, aLineStrip);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedEdge::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedEdge)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedEdge
+
+ theSW.Send(theEnt->Coordinates());
+
+ if (theEnt->HasGeometricLink())
+ {
+ theSW.Send(theEnt->GeometricLink().Value());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->LineStrip()->Length(); i3++)
+ {
+ Standard_Integer Var0 = theEnt->LineStrip()->Value(i3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedEdge::Share (const Handle(StepVisual_TessellatedEdge)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Own fields of TessellatedEdge
+
+ theIter.AddItem(theEnt->Coordinates());
+
+ if (theEnt->HasGeometricLink())
+ {
+ theIter.AddItem(theEnt->GeometricLink().Value());
+ }
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.hxx
new file mode 100644
index 0000000000..a88c46ab1d
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedEdge_HeaderFile_
+#define _RWStepVisual_RWTessellatedEdge_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedEdge;
+
+//! Read & Write tool for TessellatedEdge
+class RWStepVisual_RWTessellatedEdge
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedEdge();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedEdge)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedEdge)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedEdge)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedEdge_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx
new file mode 100644
index 0000000000..6070e25aac
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx
@@ -0,0 +1,121 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedPointSet
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedPointSet::RWStepVisual_RWTessellatedPointSet() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedPointSet::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedPointSet)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 3, theCheck, "tessellated_point_set"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Own fields of TessellatedPointSet
+
+ Handle(StepVisual_CoordinatesList) aCoordinates;
+ theData->ReadEntity(theNum, 2, "coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aCoordinates);
+
+ Handle(TColStd_HArray1OfInteger) aPointList;
+ Standard_Integer sub3 = 0;
+ if (theData->ReadSubList(theNum, 3, "point_list", theCheck, sub3))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub3);
+ aPointList = new TColStd_HArray1OfInteger(1, nb0);
+ Standard_Integer num2 = sub3;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Integer anIt0;
+ theData->ReadInteger(num2, i0, "integer", theCheck, anIt0);
+ aPointList->SetValue(i0, anIt0);
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aCoordinates, aPointList);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedPointSet::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedPointSet)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedPointSet
+
+ theSW.Send(theEnt->Coordinates());
+
+ theSW.OpenSub();
+ for (Standard_Integer i2 = 1; i2 <= theEnt->PointList()->Length(); i2++)
+ {
+ Standard_Integer Var0 = theEnt->PointList()->Value(i2);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedPointSet::Share (const Handle(StepVisual_TessellatedPointSet)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Own fields of TessellatedPointSet
+
+ theIter.AddItem(theEnt->Coordinates());
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.hxx
new file mode 100644
index 0000000000..90b7c55cb1
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedPointSet_HeaderFile_
+#define _RWStepVisual_RWTessellatedPointSet_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedPointSet;
+
+//! Read & Write tool for TessellatedPointSet
+class RWStepVisual_RWTessellatedPointSet
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedPointSet();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedPointSet)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedPointSet)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedPointSet)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedPointSet_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx
new file mode 100644
index 0000000000..3bae89fde1
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx
@@ -0,0 +1,125 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedShapeRepresentation
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedShapeRepresentation::RWStepVisual_RWTessellatedShapeRepresentation() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShapeRepresentation::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedShapeRepresentation)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 3, theCheck, "tessellated_shape_representation"))
+ {
+ return;
+ }
+
+ // Inherited fields of Representation
+
+ Handle(TCollection_HAsciiString) aRepresentation_Name;
+ theData->ReadString(theNum, 1, "representation.name", theCheck, aRepresentation_Name);
+
+ Handle(StepRepr_HArray1OfRepresentationItem) aRepresentation_Items;
+ Standard_Integer sub2 = 0;
+ if (theData->ReadSubList(theNum, 2, "representation.items", theCheck, sub2))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub2);
+ aRepresentation_Items = new StepRepr_HArray1OfRepresentationItem(1, nb0);
+ Standard_Integer num2 = sub2;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Handle(StepRepr_RepresentationItem) anIt0;
+ theData->ReadEntity(num2, i0, "representation_item", theCheck,
+ STANDARD_TYPE(StepRepr_RepresentationItem), anIt0);
+ aRepresentation_Items->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(StepRepr_RepresentationContext) aRepresentation_ContextOfItems;
+ theData->ReadEntity(theNum, 3, "representation.context_of_items", theCheck,
+ STANDARD_TYPE(StepRepr_RepresentationContext), aRepresentation_ContextOfItems);
+
+ // Initialize entity
+ theEnt->Init(aRepresentation_Name, aRepresentation_Items, aRepresentation_ContextOfItems);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShapeRepresentation::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedShapeRepresentation)& theEnt) const
+{
+
+ // Own fields of Representation
+
+ theSW.Send(theEnt->Name());
+
+ theSW.OpenSub();
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ Handle(StepRepr_RepresentationItem) Var0 = theEnt->Items()->Value(i1);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ theSW.Send(theEnt->ContextOfItems());
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShapeRepresentation::Share(
+ const Handle(StepVisual_TessellatedShapeRepresentation)&theEnt,
+Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of Representation
+
+ for (Standard_Integer i1 = 1; i1 <= theEnt->StepRepr_Representation::Items()->Length(); i1++)
+ {
+ Handle(StepRepr_RepresentationItem) Var0 = theEnt->StepRepr_Representation::Items()->Value(i1);
+ theIter.AddItem(Var0);
+ }
+
+ theIter.AddItem(theEnt->StepRepr_Representation::ContextOfItems());
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.hxx
new file mode 100644
index 0000000000..c80b2534c1
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedShapeRepresentation_HeaderFile_
+#define _RWStepVisual_RWTessellatedShapeRepresentation_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedShapeRepresentation;
+
+//! Read & Write tool for TessellatedShapeRepresentation
+class RWStepVisual_RWTessellatedShapeRepresentation
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedShapeRepresentation();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedShapeRepresentation)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedShapeRepresentation)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedShapeRepresentation)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedShapeRepresentation_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx
new file mode 100644
index 0000000000..e5f669c2e6
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx
@@ -0,0 +1,152 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters::RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 4, theCheck, "tessellated_shape_representation_with_accuracy_parameters"))
+ {
+ return;
+ }
+
+ // Inherited fields of Representation
+
+ Handle(TCollection_HAsciiString) aRepresentation_Name;
+ theData->ReadString(theNum, 1, "representation.name", theCheck, aRepresentation_Name);
+
+ Handle(StepRepr_HArray1OfRepresentationItem) aRepresentation_Items;
+ Standard_Integer sub2 = 0;
+ if (theData->ReadSubList(theNum, 2, "representation.items", theCheck, sub2))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub2);
+ aRepresentation_Items = new StepRepr_HArray1OfRepresentationItem(1, nb0);
+ Standard_Integer num2 = sub2;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Handle(StepRepr_RepresentationItem) anIt0;
+ theData->ReadEntity(num2, i0, "representation_item", theCheck,
+ STANDARD_TYPE(StepRepr_RepresentationItem), anIt0);
+ aRepresentation_Items->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(StepRepr_RepresentationContext) aRepresentation_ContextOfItems;
+ theData->ReadEntity(theNum, 3, "representation.context_of_items", theCheck,
+ STANDARD_TYPE(StepRepr_RepresentationContext), aRepresentation_ContextOfItems);
+
+ // Own fields of TessellatedShapeRepresentationWithAccuracyParameters
+
+ Handle(TColStd_HArray1OfReal) aTessellationAccuracyParameters;
+ Standard_Integer sub4 = 0;
+ if (theData->ReadSubList(theNum, 4, "tessellation_accuracy_parameters", theCheck, sub4))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub4);
+ aTessellationAccuracyParameters = new TColStd_HArray1OfReal(1, nb0);
+ Standard_Integer num2 = sub4;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Standard_Real anIt0;
+ theData->ReadReal(num2, i0, "tessellation_accuracy_parameter_item", theCheck, anIt0);
+ aTessellationAccuracyParameters->SetValue(i0, anIt0);
+ }
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentation_Name, aRepresentation_Items, aRepresentation_ContextOfItems, aTessellationAccuracyParameters);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters)& theEnt) const
+{
+
+ // Own fields of Representation
+
+ theSW.Send(theEnt->Name());
+
+ theSW.OpenSub();
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ Handle(StepRepr_RepresentationItem) Var0 = theEnt->Items()->Value(i1);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ theSW.Send(theEnt->ContextOfItems());
+
+ // Own fields of TessellatedShapeRepresentationWithAccuracyParameters
+
+ theSW.OpenSub();
+ for (Standard_Integer i3 = 1; i3 <= theEnt->TessellationAccuracyParameters()->Length(); i3++)
+ {
+ Standard_Real Var0 = theEnt->TessellationAccuracyParameters()->Value(i3);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters::Share(
+ const Handle(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters)&theEnt,
+Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of Representation
+
+ for (Standard_Integer i1 = 1; i1 <= theEnt->StepRepr_Representation::Items()->Length(); i1++)
+ {
+ Handle(StepRepr_RepresentationItem) Var0 = theEnt->StepRepr_Representation::Items()->Value(i1);
+ theIter.AddItem(Var0);
+ }
+
+ theIter.AddItem(theEnt->StepRepr_Representation::ContextOfItems());
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.hxx
new file mode 100644
index 0000000000..4c6fef75d1
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters_HeaderFile_
+#define _RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedShapeRepresentationWithAccuracyParameters;
+
+//! Read & Write tool for TessellatedShapeRepresentationWithAccuracyParameters
+class RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedShapeRepresentationWithAccuracyParameters)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx
new file mode 100644
index 0000000000..e6f096101b
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx
@@ -0,0 +1,147 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedShell
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedShell::RWStepVisual_RWTessellatedShell() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShell::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedShell)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 3, theCheck, "tessellated_shell"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Own fields of TessellatedShell
+
+ Handle(StepVisual_HArray1OfTessellatedStructuredItem) aItems;
+ Standard_Integer sub2 = 0;
+ if (theData->ReadSubList(theNum, 2, "items", theCheck, sub2))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub2);
+ aItems = new StepVisual_HArray1OfTessellatedStructuredItem(1, nb0);
+ Standard_Integer num2 = sub2;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Handle(StepVisual_TessellatedStructuredItem) anIt0;
+ theData->ReadEntity(num2, i0, "tessellated_structured_item", theCheck,
+ STANDARD_TYPE(StepVisual_TessellatedStructuredItem), anIt0);
+ aItems->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(StepShape_ConnectedFaceSet) aTopologicalLink;
+ Standard_Boolean hasTopologicalLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "topological_link", theCheck,
+ STANDARD_TYPE(StepShape_ConnectedFaceSet), aTopologicalLink);
+ }
+ else
+ {
+ hasTopologicalLink = Standard_False;
+ aTopologicalLink.Nullify();
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aItems, hasTopologicalLink, aTopologicalLink);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShell::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedShell)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedShell
+
+ theSW.OpenSub();
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ Handle(StepVisual_TessellatedStructuredItem) Var0 = theEnt->Items()->Value(i1);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ if (theEnt->HasTopologicalLink())
+ {
+ theSW.Send(theEnt->TopologicalLink());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedShell::Share (const Handle(StepVisual_TessellatedShell)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Own fields of TessellatedShell
+
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ Handle(StepVisual_TessellatedStructuredItem) Var0 = theEnt->Items()->Value(i1);
+ theIter.AddItem(Var0);
+ }
+
+ if (theEnt->HasTopologicalLink())
+ {
+ theIter.AddItem(theEnt->TopologicalLink());
+ }
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShell.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedShell.hxx
new file mode 100644
index 0000000000..ddabbfb0b5
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedShell.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedShell_HeaderFile_
+#define _RWStepVisual_RWTessellatedShell_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedShell;
+
+//! Read & Write tool for TessellatedShell
+class RWStepVisual_RWTessellatedShell
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedShell();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedShell)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedShell)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedShell)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedShell_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx
new file mode 100644
index 0000000000..883a81629c
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx
@@ -0,0 +1,147 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedSolid
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedSolid::RWStepVisual_RWTessellatedSolid() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedSolid::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedSolid)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 3, theCheck, "tessellated_solid"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Own fields of TessellatedSolid
+
+ Handle(StepVisual_HArray1OfTessellatedStructuredItem) aItems;
+ Standard_Integer sub2 = 0;
+ if (theData->ReadSubList(theNum, 2, "items", theCheck, sub2))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub2);
+ aItems = new StepVisual_HArray1OfTessellatedStructuredItem(1, nb0);
+ Standard_Integer num2 = sub2;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ Handle(StepVisual_TessellatedStructuredItem) anIt0;
+ theData->ReadEntity(num2, i0, "tessellated_structured_item", theCheck,
+ STANDARD_TYPE(StepVisual_TessellatedStructuredItem), anIt0);
+ aItems->SetValue(i0, anIt0);
+ }
+ }
+
+ Handle(StepShape_ManifoldSolidBrep) aGeometricLink;
+ Standard_Boolean hasGeometricLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "geometric_link", theCheck,
+ STANDARD_TYPE(StepShape_ManifoldSolidBrep), aGeometricLink);
+ }
+ else
+ {
+ hasGeometricLink = Standard_False;
+ aGeometricLink.Nullify();
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aItems, hasGeometricLink, aGeometricLink);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedSolid::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedSolid)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedSolid
+
+ theSW.OpenSub();
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ Handle(StepVisual_TessellatedStructuredItem) Var0 = theEnt->Items()->Value(i1);
+ theSW.Send(Var0);
+ }
+ theSW.CloseSub();
+
+ if (theEnt->HasGeometricLink())
+ {
+ theSW.Send(theEnt->GeometricLink());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedSolid::Share (const Handle(StepVisual_TessellatedSolid)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Own fields of TessellatedSolid
+
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ Handle(StepVisual_TessellatedStructuredItem) Var0 = theEnt->Items()->Value(i1);
+ theIter.AddItem(Var0);
+ }
+
+ if (theEnt->HasGeometricLink())
+ {
+ theIter.AddItem(theEnt->GeometricLink());
+ }
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.hxx
new file mode 100644
index 0000000000..269cb0fc07
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedSolid_HeaderFile_
+#define _RWStepVisual_RWTessellatedSolid_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedSolid;
+
+//! Read & Write tool for TessellatedSolid
+class RWStepVisual_RWTessellatedSolid
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedSolid();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedSolid)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedSolid)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedSolid)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedSolid_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx
new file mode 100644
index 0000000000..56292215db
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx
@@ -0,0 +1,82 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedStructuredItem
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedStructuredItem::RWStepVisual_RWTessellatedStructuredItem() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedStructuredItem::ReadStep(
+ const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedStructuredItem)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 1, theCheck, "tessellated_structured_item"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedStructuredItem::WriteStep(
+ StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedStructuredItem)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedStructuredItem::Share(
+ const Handle(StepVisual_TessellatedStructuredItem)&,
+Interface_EntityIterator&) const
+{
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.hxx
new file mode 100644
index 0000000000..ff235c8313
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedStructuredItem_HeaderFile_
+#define _RWStepVisual_RWTessellatedStructuredItem_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedStructuredItem;
+
+//! Read & Write tool for TessellatedStructuredItem
+class RWStepVisual_RWTessellatedStructuredItem
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedStructuredItem();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedStructuredItem)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedStructuredItem)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedStructuredItem)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedStructuredItem_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx
new file mode 100644
index 0000000000..6c651afd60
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx
@@ -0,0 +1,130 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedVertex
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedVertex::RWStepVisual_RWTessellatedVertex() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedVertex::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedVertex)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 4, theCheck, "tessellated_vertex"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Own fields of TessellatedVertex
+
+ Handle(StepVisual_CoordinatesList) aCoordinates;
+ theData->ReadEntity(theNum, 2, "coordinates", theCheck,
+ STANDARD_TYPE(StepVisual_CoordinatesList), aCoordinates);
+
+ Handle(StepShape_VertexPoint) aTopologicalLink;
+ Standard_Boolean hasTopologicalLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "topological_link", theCheck,
+ STANDARD_TYPE(StepShape_VertexPoint), aTopologicalLink);
+ }
+ else
+ {
+ hasTopologicalLink = Standard_False;
+ aTopologicalLink.Nullify();
+ }
+
+ Standard_Integer aPointIndex;
+ theData->ReadInteger(theNum, 4, "point_index", theCheck, aPointIndex);
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aCoordinates, hasTopologicalLink, aTopologicalLink, aPointIndex);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedVertex::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedVertex)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedVertex
+
+ theSW.Send(theEnt->Coordinates());
+
+ if (theEnt->HasTopologicalLink())
+ {
+ theSW.Send(theEnt->TopologicalLink());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+
+ theSW.Send(theEnt->PointIndex());
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedVertex::Share (const Handle(StepVisual_TessellatedVertex)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Own fields of TessellatedVertex
+
+ theIter.AddItem(theEnt->Coordinates());
+
+ if (theEnt->HasTopologicalLink())
+ {
+ theIter.AddItem(theEnt->TopologicalLink());
+ }
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.hxx
new file mode 100644
index 0000000000..6ea6b5eff4
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedVertex_HeaderFile_
+#define _RWStepVisual_RWTessellatedVertex_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedVertex;
+
+//! Read & Write tool for TessellatedVertex
+class RWStepVisual_RWTessellatedVertex
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedVertex();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedVertex)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedVertex)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedVertex)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedVertex_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx b/src/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx
new file mode 100644
index 0000000000..c37884f095
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx
@@ -0,0 +1,145 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+//=======================================================================
+//function : RWStepVisual_RWTessellatedWire
+//purpose :
+//=======================================================================
+
+RWStepVisual_RWTessellatedWire::RWStepVisual_RWTessellatedWire() {}
+
+
+//=======================================================================
+//function : ReadStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedWire::ReadStep (const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedWire)& theEnt) const
+{
+ // Check number of parameters
+ if (!theData->CheckNbParams(theNum, 3, theCheck, "tessellated_wire"))
+ {
+ return;
+ }
+
+ // Inherited fields of RepresentationItem
+
+ Handle(TCollection_HAsciiString) aRepresentationItem_Name;
+ theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name);
+
+ // Own fields of TessellatedWire
+
+ Handle(StepVisual_HArray1OfTessellatedEdgeOrVertex) aItems;
+ Standard_Integer sub2 = 0;
+ if (theData->ReadSubList(theNum, 2, "items", theCheck, sub2))
+ {
+ Standard_Integer nb0 = theData->NbParams(sub2);
+ aItems = new StepVisual_HArray1OfTessellatedEdgeOrVertex(1, nb0);
+ Standard_Integer num2 = sub2;
+ for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
+ {
+ StepVisual_TessellatedEdgeOrVertex anIt0;
+ theData->ReadEntity(num2, i0, "tessellated_edge_or_vertex", theCheck, anIt0);
+ aItems->SetValue(i0, anIt0);
+ }
+ }
+
+ StepVisual_PathOrCompositeCurve aGeometricModelLink;
+ Standard_Boolean hasGeometricModelLink = Standard_True;
+ if (theData->IsParamDefined(theNum, 3))
+ {
+ theData->ReadEntity(theNum, 3, "geometric_model_link", theCheck, aGeometricModelLink);
+ }
+ else
+ {
+ hasGeometricModelLink = Standard_False;
+ aGeometricModelLink = StepVisual_PathOrCompositeCurve();
+ }
+
+ // Initialize entity
+ theEnt->Init(aRepresentationItem_Name, aItems, hasGeometricModelLink, aGeometricModelLink);
+}
+
+//=======================================================================
+//function : WriteStep
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedWire::WriteStep (StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedWire)& theEnt) const
+{
+
+ // Own fields of RepresentationItem
+
+ theSW.Send(theEnt->Name());
+
+ // Own fields of TessellatedWire
+
+ theSW.OpenSub();
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ StepVisual_TessellatedEdgeOrVertex Var0 = theEnt->Items()->Value(i1);
+ theSW.Send(Var0.Value());
+ }
+ theSW.CloseSub();
+
+ if (theEnt->HasGeometricModelLink())
+ {
+ theSW.Send(theEnt->GeometricModelLink().Value());
+ }
+ else
+ {
+ theSW.SendUndef();
+ }
+}
+
+//=======================================================================
+//function : Share
+//purpose :
+//=======================================================================
+
+void RWStepVisual_RWTessellatedWire::Share (const Handle(StepVisual_TessellatedWire)&theEnt,
+ Interface_EntityIterator& theIter) const
+{
+
+ // Inherited fields of RepresentationItem
+
+ // Own fields of TessellatedWire
+
+ for (Standard_Integer i1 = 1; i1 <= theEnt->Items()->Length(); i1++)
+ {
+ StepVisual_TessellatedEdgeOrVertex Var0 = theEnt->Items()->Value(i1);
+ theIter.AddItem(Var0.Value());
+ }
+
+ if (theEnt->HasGeometricModelLink())
+ {
+ theIter.AddItem(theEnt->GeometricModelLink().Value());
+ }
+}
diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedWire.hxx b/src/RWStepVisual/RWStepVisual_RWTessellatedWire.hxx
new file mode 100644
index 0000000000..e728a3f78c
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTessellatedWire.hxx
@@ -0,0 +1,53 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _RWStepVisual_RWTessellatedWire_HeaderFile_
+#define _RWStepVisual_RWTessellatedWire_HeaderFile_
+
+#include
+#include
+#include
+
+class StepData_StepReaderData;
+class Interface_Check;
+class StepData_StepWriter;
+class Interface_EntityIterator;
+class StepVisual_TessellatedWire;
+
+//! Read & Write tool for TessellatedWire
+class RWStepVisual_RWTessellatedWire
+{
+
+public:
+
+ DEFINE_STANDARD_ALLOC
+
+ Standard_EXPORT RWStepVisual_RWTessellatedWire();
+
+ Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData,
+ const Standard_Integer theNum,
+ Handle(Interface_Check)& theCheck,
+ const Handle(StepVisual_TessellatedWire)& theEnt) const;
+
+ Standard_EXPORT void WriteStep(StepData_StepWriter& theSW,
+ const Handle(StepVisual_TessellatedWire)& theEnt) const;
+
+ Standard_EXPORT void Share(const Handle(StepVisual_TessellatedWire)& theEnt,
+ Interface_EntityIterator& theIter) const;
+
+};
+
+#endif // _RWStepVisual_RWTessellatedWire_HeaderFile_
diff --git a/src/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx b/src/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx
new file mode 100644
index 0000000000..c8acb6a064
--- /dev/null
+++ b/src/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx
@@ -0,0 +1,239 @@
+// Created on : Thu Mar 24 18:30:12 2022
+// Created by: snn
+// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0
+// Copyright (c) Open CASCADE 2022
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#include
+#include