File indexing completed on 2025-01-18 10:05:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepVisual_TessellatedConnectingEdge_HeaderFile_
0018 #define _StepVisual_TessellatedConnectingEdge_HeaderFile_
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 #include <StepVisual_TessellatedEdge.hxx>
0023
0024 #include <StepData_Logical.hxx>
0025 #include <StepVisual_TessellatedFace.hxx>
0026 #include <TColStd_HArray1OfInteger.hxx>
0027
0028 DEFINE_STANDARD_HANDLE(StepVisual_TessellatedConnectingEdge, StepVisual_TessellatedEdge)
0029
0030
0031 class StepVisual_TessellatedConnectingEdge : public StepVisual_TessellatedEdge
0032 {
0033
0034 public :
0035
0036
0037 Standard_EXPORT StepVisual_TessellatedConnectingEdge();
0038
0039
0040 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theRepresentationItem_Name,
0041 const Handle(StepVisual_CoordinatesList)& theTessellatedEdge_Coordinates,
0042 const Standard_Boolean theHasTessellatedEdge_GeometricLink,
0043 const StepVisual_EdgeOrCurve& theTessellatedEdge_GeometricLink,
0044 const Handle(TColStd_HArray1OfInteger)& theTessellatedEdge_LineStrip,
0045 const StepData_Logical theSmooth,
0046 const Handle(StepVisual_TessellatedFace)& theFace1,
0047 const Handle(StepVisual_TessellatedFace)& theFace2,
0048 const Handle(TColStd_HArray1OfInteger)& theLineStripFace1,
0049 const Handle(TColStd_HArray1OfInteger)& theLineStripFace2);
0050
0051
0052 Standard_EXPORT StepData_Logical Smooth() const;
0053
0054
0055 Standard_EXPORT void SetSmooth (const StepData_Logical theSmooth);
0056
0057
0058 Standard_EXPORT Handle(StepVisual_TessellatedFace) Face1() const;
0059
0060
0061 Standard_EXPORT void SetFace1 (const Handle(StepVisual_TessellatedFace)& theFace1);
0062
0063
0064 Standard_EXPORT Handle(StepVisual_TessellatedFace) Face2() const;
0065
0066
0067 Standard_EXPORT void SetFace2 (const Handle(StepVisual_TessellatedFace)& theFace2);
0068
0069
0070 Standard_EXPORT Handle(TColStd_HArray1OfInteger) LineStripFace1() const;
0071
0072
0073 Standard_EXPORT void SetLineStripFace1 (const Handle(TColStd_HArray1OfInteger)& theLineStripFace1);
0074
0075
0076 Standard_EXPORT Standard_Integer NbLineStripFace1() const;
0077
0078
0079 Standard_EXPORT Standard_Integer LineStripFace1Value(const Standard_Integer theNum) const;
0080
0081
0082 Standard_EXPORT Handle(TColStd_HArray1OfInteger) LineStripFace2() const;
0083
0084
0085 Standard_EXPORT void SetLineStripFace2 (const Handle(TColStd_HArray1OfInteger)& theLineStripFace2);
0086
0087
0088 Standard_EXPORT Standard_Integer NbLineStripFace2() const;
0089
0090
0091 Standard_EXPORT Standard_Integer LineStripFace2Value(const Standard_Integer theNum) const;
0092
0093 DEFINE_STANDARD_RTTIEXT(StepVisual_TessellatedConnectingEdge, StepVisual_TessellatedEdge)
0094
0095 private:
0096
0097 StepData_Logical mySmooth;
0098 Handle(StepVisual_TessellatedFace) myFace1;
0099 Handle(StepVisual_TessellatedFace) myFace2;
0100 Handle(TColStd_HArray1OfInteger) myLineStripFace1;
0101 Handle(TColStd_HArray1OfInteger) myLineStripFace2;
0102
0103 };
0104
0105 #endif