File indexing completed on 2026-09-26 09:04:52
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepGeom_SurfaceOfRevolution_HeaderFile
0018 #define _StepGeom_SurfaceOfRevolution_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <StepGeom_SweptSurface.hxx>
0024 class StepGeom_Axis1Placement;
0025 class TCollection_HAsciiString;
0026 class StepGeom_Curve;
0027
0028 class StepGeom_SurfaceOfRevolution : public StepGeom_SweptSurface
0029 {
0030
0031 public:
0032
0033 Standard_EXPORT StepGeom_SurfaceOfRevolution();
0034
0035 Standard_EXPORT void Init(const occ::handle<TCollection_HAsciiString>& aName,
0036 const occ::handle<StepGeom_Curve>& aSweptCurve,
0037 const occ::handle<StepGeom_Axis1Placement>& aAxisPosition);
0038
0039 Standard_EXPORT void SetAxisPosition(const occ::handle<StepGeom_Axis1Placement>& aAxisPosition);
0040
0041 Standard_EXPORT occ::handle<StepGeom_Axis1Placement> AxisPosition() const;
0042
0043 DEFINE_STANDARD_RTTIEXT(StepGeom_SurfaceOfRevolution, StepGeom_SweptSurface)
0044
0045 private:
0046 occ::handle<StepGeom_Axis1Placement> axisPosition;
0047 };
0048
0049 #endif