Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-14 08:29:56

0001 // Created on : Sat May 02 12:41:14 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 _StepGeom_SuParameters_HeaderFile_
0018 #define _StepGeom_SuParameters_HeaderFile_
0019 
0020 #include <Standard.hxx>
0021 #include <StepGeom_GeometricRepresentationItem.hxx>
0022 
0023 #include <TCollection_HAsciiString.hxx>
0024 
0025 DEFINE_STANDARD_HANDLE(StepGeom_SuParameters, StepGeom_GeometricRepresentationItem)
0026 
0027 //! Representation of STEP entity SuParameters
0028 class StepGeom_SuParameters : public StepGeom_GeometricRepresentationItem
0029 {
0030 public:
0031   //! default constructor
0032   Standard_EXPORT StepGeom_SuParameters();
0033 
0034   //! Initialize all fields (own and inherited)
0035   Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theRepresentationItem_Name,
0036                             const Standard_Real                     theA,
0037                             const Standard_Real                     theAlpha,
0038                             const Standard_Real                     theB,
0039                             const Standard_Real                     theBeta,
0040                             const Standard_Real                     theC,
0041                             const Standard_Real                     theGamma);
0042 
0043   //! Returns field A
0044   Standard_EXPORT Standard_Real A() const;
0045   //! Sets field A
0046   Standard_EXPORT void SetA(const Standard_Real theA);
0047 
0048   //! Returns field Alpha
0049   Standard_EXPORT Standard_Real Alpha() const;
0050   //! Sets field Alpha
0051   Standard_EXPORT void SetAlpha(const Standard_Real theAlpha);
0052 
0053   //! Returns field B
0054   Standard_EXPORT Standard_Real B() const;
0055   //! Sets field B
0056   Standard_EXPORT void SetB(const Standard_Real theB);
0057 
0058   //! Returns field Beta
0059   Standard_EXPORT Standard_Real Beta() const;
0060   //! Sets field Beta
0061   Standard_EXPORT void SetBeta(const Standard_Real theBeta);
0062 
0063   //! Returns field C
0064   Standard_EXPORT Standard_Real C() const;
0065   //! Sets field C
0066   Standard_EXPORT void SetC(const Standard_Real theC);
0067 
0068   //! Returns field Gamma
0069   Standard_EXPORT Standard_Real Gamma() const;
0070   //! Sets field Gamma
0071   Standard_EXPORT void SetGamma(const Standard_Real theGamma);
0072 
0073   DEFINE_STANDARD_RTTIEXT(StepGeom_SuParameters, StepGeom_GeometricRepresentationItem)
0074 
0075 private:
0076   Standard_Real myA;
0077   Standard_Real myAlpha;
0078   Standard_Real myB;
0079   Standard_Real myBeta;
0080   Standard_Real myC;
0081   Standard_Real myGamma;
0082 };
0083 #endif // _StepGeom_SuParameters_HeaderFile_