File indexing completed on 2025-01-18 10:05:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepVisual_CoordinatesList_HeaderFile
0017 #define _StepVisual_CoordinatesList_HeaderFile
0018 #include <Standard.hxx>
0019 #include <Standard_DefineAlloc.hxx>
0020 #include <Standard_Handle.hxx>
0021 #include <TColgp_HArray1OfXYZ.hxx>
0022 #include <StepVisual_TessellatedItem.hxx>
0023
0024 DEFINE_STANDARD_HANDLE(StepVisual_CoordinatesList,StepVisual_TessellatedItem)
0025 class StepVisual_CoordinatesList : public StepVisual_TessellatedItem
0026 {
0027 public:
0028
0029 DEFINE_STANDARD_ALLOC
0030
0031
0032 Standard_EXPORT StepVisual_CoordinatesList();
0033
0034 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theName, const Handle(TColgp_HArray1OfXYZ)& thePoints);
0035
0036 Standard_EXPORT Handle(TColgp_HArray1OfXYZ) Points() const;
0037
0038 DEFINE_STANDARD_RTTIEXT(StepVisual_CoordinatesList,StepVisual_TessellatedItem)
0039
0040 private:
0041
0042 Handle(TColgp_HArray1OfXYZ) myPoints;
0043 };
0044 #endif