Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-16 09:18:45

0001 // Created on : Sat May 02 12:41:16 2020
0002 // Created by: Irina KRYLOVA
0003 // Generator:   Express (EXPRESS -> CASCADE/XSTEP Translator) V3.0
0004 // Copyright (c) Open CASCADE 2020
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
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 //! Representation of STEP entity SurfacePairWithRange
0030 class StepKinematics_SurfacePairWithRange : public StepKinematics_SurfacePair
0031 {
0032 public:
0033   //! default constructor
0034   Standard_EXPORT StepKinematics_SurfacePairWithRange();
0035 
0036   //! Initialize all fields (own and inherited)
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   //! Returns field RangeOnSurface1
0056   Standard_EXPORT occ::handle<StepGeom_RectangularTrimmedSurface> RangeOnSurface1() const;
0057   //! Sets field RangeOnSurface1
0058   Standard_EXPORT void SetRangeOnSurface1(
0059     const occ::handle<StepGeom_RectangularTrimmedSurface>& theRangeOnSurface1);
0060 
0061   //! Returns field RangeOnSurface2
0062   Standard_EXPORT occ::handle<StepGeom_RectangularTrimmedSurface> RangeOnSurface2() const;
0063   //! Sets field RangeOnSurface2
0064   Standard_EXPORT void SetRangeOnSurface2(
0065     const occ::handle<StepGeom_RectangularTrimmedSurface>& theRangeOnSurface2);
0066 
0067   //! Returns field LowerLimitActualRotation
0068   Standard_EXPORT double LowerLimitActualRotation() const;
0069   //! Sets field LowerLimitActualRotation
0070   Standard_EXPORT void SetLowerLimitActualRotation(const double theLowerLimitActualRotation);
0071   //! Returns True if optional field LowerLimitActualRotation is defined
0072   Standard_EXPORT bool HasLowerLimitActualRotation() const;
0073 
0074   //! Returns field UpperLimitActualRotation
0075   Standard_EXPORT double UpperLimitActualRotation() const;
0076   //! Sets field UpperLimitActualRotation
0077   Standard_EXPORT void SetUpperLimitActualRotation(const double theUpperLimitActualRotation);
0078   //! Returns True if optional field UpperLimitActualRotation is defined
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; //!< optional
0087   double                                          myUpperLimitActualRotation; //!< optional
0088   bool defLowerLimitActualRotation; //!< flag "is LowerLimitActualRotation defined"
0089   bool defUpperLimitActualRotation; //!< flag "is UpperLimitActualRotation defined"
0090 };
0091 #endif // _StepKinematics_SurfacePairWithRange_HeaderFile_