Warning, file /include/opencascade/StepVisual_TessellatedFace.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepVisual_TessellatedFace_HeaderFile_
0018 #define _StepVisual_TessellatedFace_HeaderFile_
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 #include <StepVisual_TessellatedStructuredItem.hxx>
0023
0024 #include <StepVisual_CoordinatesList.hxx>
0025 #include <TColStd_HArray2OfReal.hxx>
0026 #include <StepVisual_FaceOrSurface.hxx>
0027
0028 DEFINE_STANDARD_HANDLE(StepVisual_TessellatedFace, StepVisual_TessellatedStructuredItem)
0029
0030
0031 class StepVisual_TessellatedFace : public StepVisual_TessellatedStructuredItem
0032 {
0033
0034 public :
0035
0036
0037 Standard_EXPORT StepVisual_TessellatedFace();
0038
0039
0040 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theRepresentationItem_Name,
0041 const Handle(StepVisual_CoordinatesList)& theCoordinates,
0042 const Standard_Integer thePnmax,
0043 const Handle(TColStd_HArray2OfReal)& theNormals,
0044 const Standard_Boolean theHasGeometricLink,
0045 const StepVisual_FaceOrSurface& theGeometricLink);
0046
0047
0048 Standard_EXPORT Handle(StepVisual_CoordinatesList) Coordinates() const;
0049
0050
0051 Standard_EXPORT void SetCoordinates (const Handle(StepVisual_CoordinatesList)& theCoordinates);
0052
0053
0054 Standard_EXPORT Standard_Integer Pnmax() const;
0055
0056
0057 Standard_EXPORT void SetPnmax (const Standard_Integer thePnmax);
0058
0059
0060 Standard_EXPORT Handle(TColStd_HArray2OfReal) Normals() const;
0061
0062
0063 Standard_EXPORT void SetNormals (const Handle(TColStd_HArray2OfReal)& theNormals);
0064
0065
0066 Standard_EXPORT Standard_Integer NbNormals() const;
0067
0068
0069 Standard_EXPORT StepVisual_FaceOrSurface GeometricLink() const;
0070
0071
0072 Standard_EXPORT void SetGeometricLink (const StepVisual_FaceOrSurface& theGeometricLink);
0073
0074
0075 Standard_EXPORT Standard_Boolean HasGeometricLink() const;
0076
0077 DEFINE_STANDARD_RTTIEXT(StepVisual_TessellatedFace, StepVisual_TessellatedStructuredItem)
0078
0079 private:
0080
0081 Handle(StepVisual_CoordinatesList) myCoordinates;
0082 Standard_Integer myPnmax;
0083 Handle(TColStd_HArray2OfReal) myNormals;
0084 StepVisual_FaceOrSurface myGeometricLink;
0085 Standard_Boolean myHasGeometricLink;
0086
0087 };
0088
0089 #endif