File indexing completed on 2026-05-31 08:31:38
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _XSDRAWSTL_DataSource3D_HeaderFile
0017 #define _XSDRAWSTL_DataSource3D_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <TColStd_HArray1OfInteger.hxx>
0023 #include <TColStd_HArray2OfReal.hxx>
0024 #include <TColStd_HArray2OfInteger.hxx>
0025 #include <MeshVS_DataSource.hxx>
0026 #include <Standard_Integer.hxx>
0027 #include <TColStd_Array1OfReal.hxx>
0028 #include <MeshVS_EntityType.hxx>
0029 #include <MeshVS_HArray1OfSequenceOfInteger.hxx>
0030 #include <TColStd_Array1OfInteger.hxx>
0031
0032 class XSDRAWSTL_DataSource3D;
0033 DEFINE_STANDARD_HANDLE(XSDRAWSTL_DataSource3D, MeshVS_DataSource)
0034
0035
0036 class XSDRAWSTL_DataSource3D : public MeshVS_DataSource
0037 {
0038
0039 public:
0040
0041 Standard_EXPORT XSDRAWSTL_DataSource3D();
0042
0043
0044
0045
0046
0047
0048 Standard_EXPORT Standard_Boolean GetGeom(const Standard_Integer theID,
0049 const Standard_Boolean theIsElement,
0050 TColStd_Array1OfReal& theCoords,
0051 Standard_Integer& theNbNodes,
0052 MeshVS_EntityType& theType) const Standard_OVERRIDE;
0053
0054
0055
0056 Standard_EXPORT virtual Standard_Boolean Get3DGeom(
0057 const Standard_Integer theID,
0058 Standard_Integer& theNbNodes,
0059 Handle(MeshVS_HArray1OfSequenceOfInteger)& theData) const Standard_OVERRIDE;
0060
0061
0062
0063 Standard_EXPORT Standard_Boolean GetGeomType(const Standard_Integer theID,
0064 const Standard_Boolean theIsElement,
0065 MeshVS_EntityType& theType) const Standard_OVERRIDE;
0066
0067
0068
0069 Standard_EXPORT Standard_Address
0070 GetAddr(const Standard_Integer theID,
0071 const Standard_Boolean theIsElement) const Standard_OVERRIDE;
0072
0073
0074 Standard_EXPORT virtual Standard_Boolean GetNodesByElement(const Standard_Integer theID,
0075 TColStd_Array1OfInteger& theNodeIDs,
0076 Standard_Integer& theNbNodes) const
0077 Standard_OVERRIDE;
0078
0079
0080 Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllNodes() const Standard_OVERRIDE;
0081
0082
0083 Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllElements() const Standard_OVERRIDE;
0084
0085
0086
0087 Standard_EXPORT virtual Standard_Boolean GetNormal(const Standard_Integer theID,
0088 const Standard_Integer theMax,
0089 Standard_Real& theNx,
0090 Standard_Real& theNy,
0091 Standard_Real& theNz) const Standard_OVERRIDE;
0092
0093 DEFINE_STANDARD_RTTIEXT(XSDRAWSTL_DataSource3D, MeshVS_DataSource)
0094
0095 protected:
0096 private:
0097 TColStd_PackedMapOfInteger myNodes;
0098 TColStd_PackedMapOfInteger myElements;
0099 Handle(TColStd_HArray1OfInteger) myElemNbNodes;
0100 Handle(TColStd_HArray2OfReal) myNodeCoords;
0101 Handle(TColStd_HArray2OfInteger) myElemNodes;
0102 };
0103
0104 #endif