File indexing completed on 2026-09-16 09:18:45
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepKinematics_SurfacePairWithRange_HeaderFile_
0018 #define _StepKinematics_SurfacePairWithRange_HeaderFile_
0019
0020 #include <Standard.hxx>
0021 #include <StepKinematics_SurfacePair.hxx>
0022
0023 #include <TCollection_HAsciiString.hxx>
0024 #include <StepRepr_RepresentationItem.hxx>
0025 #include <StepKinematics_KinematicJoint.hxx>
0026 #include <StepGeom_Surface.hxx>
0027 #include <StepGeom_RectangularTrimmedSurface.hxx>
0028
0029
0030 class StepKinematics_SurfacePairWithRange : public StepKinematics_SurfacePair
0031 {
0032 public:
0033
0034 Standard_EXPORT StepKinematics_SurfacePairWithRange();
0035
0036
0037 Standard_EXPORT void Init(
0038 const occ::handle<TCollection_HAsciiString>& theRepresentationItem_Name,
0039 const occ::handle<TCollection_HAsciiString>& theItemDefinedTransformation_Name,
0040 const bool hasItemDefinedTransformation_Description,
0041 const occ::handle<TCollection_HAsciiString>& theItemDefinedTransformation_Description,
0042 const occ::handle<StepRepr_RepresentationItem>& theItemDefinedTransformation_TransformItem1,
0043 const occ::handle<StepRepr_RepresentationItem>& theItemDefinedTransformation_TransformItem2,
0044 const occ::handle<StepKinematics_KinematicJoint>& theKinematicPair_Joint,
0045 const occ::handle<StepGeom_Surface>& theSurfacePair_Surface1,
0046 const occ::handle<StepGeom_Surface>& theSurfacePair_Surface2,
0047 const bool theSurfacePair_Orientation,
0048 const occ::handle<StepGeom_RectangularTrimmedSurface>& theRangeOnSurface1,
0049 const occ::handle<StepGeom_RectangularTrimmedSurface>& theRangeOnSurface2,
0050 const bool hasLowerLimitActualRotation,
0051 const double theLowerLimitActualRotation,
0052 const bool hasUpperLimitActualRotation,
0053 const double theUpperLimitActualRotation);
0054
0055
0056 Standard_EXPORT occ::handle<StepGeom_RectangularTrimmedSurface> RangeOnSurface1() const;
0057
0058 Standard_EXPORT void SetRangeOnSurface1(
0059 const occ::handle<StepGeom_RectangularTrimmedSurface>& theRangeOnSurface1);
0060
0061
0062 Standard_EXPORT occ::handle<StepGeom_RectangularTrimmedSurface> RangeOnSurface2() const;
0063
0064 Standard_EXPORT void SetRangeOnSurface2(
0065 const occ::handle<StepGeom_RectangularTrimmedSurface>& theRangeOnSurface2);
0066
0067
0068 Standard_EXPORT double LowerLimitActualRotation() const;
0069
0070 Standard_EXPORT void SetLowerLimitActualRotation(const double theLowerLimitActualRotation);
0071
0072 Standard_EXPORT bool HasLowerLimitActualRotation() const;
0073
0074
0075 Standard_EXPORT double UpperLimitActualRotation() const;
0076
0077 Standard_EXPORT void SetUpperLimitActualRotation(const double theUpperLimitActualRotation);
0078
0079 Standard_EXPORT bool HasUpperLimitActualRotation() const;
0080
0081 DEFINE_STANDARD_RTTIEXT(StepKinematics_SurfacePairWithRange, StepKinematics_SurfacePair)
0082
0083 private:
0084 occ::handle<StepGeom_RectangularTrimmedSurface> myRangeOnSurface1;
0085 occ::handle<StepGeom_RectangularTrimmedSurface> myRangeOnSurface2;
0086 double myLowerLimitActualRotation;
0087 double myUpperLimitActualRotation;
0088 bool defLowerLimitActualRotation;
0089 bool defUpperLimitActualRotation;
0090 };
0091 #endif