File indexing completed on 2026-09-17 09:22:09
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepFEA_ParametricSurface3dElementCoordinateSystem_HeaderFile
0017 #define _StepFEA_ParametricSurface3dElementCoordinateSystem_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <Standard_Integer.hxx>
0023 #include <Standard_Real.hxx>
0024 #include <StepFEA_FeaRepresentationItem.hxx>
0025 class TCollection_HAsciiString;
0026
0027
0028 class StepFEA_ParametricSurface3dElementCoordinateSystem : public StepFEA_FeaRepresentationItem
0029 {
0030
0031 public:
0032
0033 Standard_EXPORT StepFEA_ParametricSurface3dElementCoordinateSystem();
0034
0035
0036 Standard_EXPORT void Init(const occ::handle<TCollection_HAsciiString>& aRepresentationItem_Name,
0037 const int aAxis,
0038 const double aAngle);
0039
0040
0041 Standard_EXPORT int Axis() const;
0042
0043
0044 Standard_EXPORT void SetAxis(const int Axis);
0045
0046
0047 Standard_EXPORT double Angle() const;
0048
0049
0050 Standard_EXPORT void SetAngle(const double Angle);
0051
0052 DEFINE_STANDARD_RTTIEXT(StepFEA_ParametricSurface3dElementCoordinateSystem,
0053 StepFEA_FeaRepresentationItem)
0054
0055 private:
0056 int theAxis;
0057 double theAngle;
0058 };
0059
0060 #endif