File indexing completed on 2026-09-12 09:18:49
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepFEA_Volume3dElementRepresentation_HeaderFile
0017 #define _StepFEA_Volume3dElementRepresentation_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <StepFEA_ElementRepresentation.hxx>
0023 #include <StepRepr_RepresentationItem.hxx>
0024 #include <NCollection_Array1.hxx>
0025 #include <NCollection_HArray1.hxx>
0026 #include <StepFEA_NodeRepresentation.hxx>
0027 class StepFEA_FeaModel3d;
0028 class StepElement_Volume3dElementDescriptor;
0029 class StepElement_ElementMaterial;
0030 class TCollection_HAsciiString;
0031 class StepRepr_RepresentationContext;
0032
0033
0034 class StepFEA_Volume3dElementRepresentation : public StepFEA_ElementRepresentation
0035 {
0036
0037 public:
0038
0039 Standard_EXPORT StepFEA_Volume3dElementRepresentation();
0040
0041
0042 Standard_EXPORT void Init(
0043 const occ::handle<TCollection_HAsciiString>& aRepresentation_Name,
0044 const occ::handle<NCollection_HArray1<occ::handle<StepRepr_RepresentationItem>>>&
0045 aRepresentation_Items,
0046 const occ::handle<StepRepr_RepresentationContext>& aRepresentation_ContextOfItems,
0047 const occ::handle<NCollection_HArray1<occ::handle<StepFEA_NodeRepresentation>>>&
0048 aElementRepresentation_NodeList,
0049 const occ::handle<StepFEA_FeaModel3d>& aModelRef,
0050 const occ::handle<StepElement_Volume3dElementDescriptor>& aElementDescriptor,
0051 const occ::handle<StepElement_ElementMaterial>& aMaterial);
0052
0053
0054 Standard_EXPORT occ::handle<StepFEA_FeaModel3d> ModelRef() const;
0055
0056
0057 Standard_EXPORT void SetModelRef(const occ::handle<StepFEA_FeaModel3d>& ModelRef);
0058
0059
0060 Standard_EXPORT occ::handle<StepElement_Volume3dElementDescriptor> ElementDescriptor() const;
0061
0062
0063 Standard_EXPORT void SetElementDescriptor(
0064 const occ::handle<StepElement_Volume3dElementDescriptor>& ElementDescriptor);
0065
0066
0067 Standard_EXPORT occ::handle<StepElement_ElementMaterial> Material() const;
0068
0069
0070 Standard_EXPORT void SetMaterial(const occ::handle<StepElement_ElementMaterial>& Material);
0071
0072 DEFINE_STANDARD_RTTIEXT(StepFEA_Volume3dElementRepresentation, StepFEA_ElementRepresentation)
0073
0074 private:
0075 occ::handle<StepFEA_FeaModel3d> theModelRef;
0076 occ::handle<StepElement_Volume3dElementDescriptor> theElementDescriptor;
0077 occ::handle<StepElement_ElementMaterial> theMaterial;
0078 };
0079
0080 #endif