Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-09 09:17:25

0001 // Created on: 2006-05-25
0002 // Created by: Alexander GRIGORIEV
0003 // Copyright (c) 2006-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef VrmlData_Cylinder_HeaderFile
0017 #define VrmlData_Cylinder_HeaderFile
0018 
0019 #include <VrmlData_Geometry.hxx>
0020 
0021 /**
0022  *  Implementation of the Cylinder node
0023  */
0024 class VrmlData_Cylinder : public VrmlData_Geometry
0025 {
0026 public:
0027   // ---------- PUBLIC METHODS ----------
0028 
0029   /**
0030    * Empty constructor
0031    */
0032   inline VrmlData_Cylinder()
0033       : myRadius(1.),
0034         myHeight(2.),
0035         myHasBottom(Standard_True),
0036         myHasSide(Standard_True),
0037         myHasTop(Standard_True)
0038   {
0039   }
0040 
0041   /**
0042    * Constructor
0043    */
0044   inline VrmlData_Cylinder(const VrmlData_Scene& theScene,
0045                            const char*           theName,
0046                            const Standard_Real   theRadius = 1.,
0047                            const Standard_Real   theHeight = 2.)
0048       : VrmlData_Geometry(theScene, theName),
0049         myRadius(theRadius),
0050         myHeight(theHeight),
0051         myHasBottom(Standard_True),
0052         myHasSide(Standard_True),
0053         myHasTop(Standard_True)
0054   {
0055   }
0056 
0057   /**
0058    * Query the Radius
0059    */
0060   inline Standard_Real Radius() const { return myRadius; }
0061 
0062   /**
0063    * Query the Height
0064    */
0065   inline Standard_Real Height() const { return myHeight; }
0066 
0067   /**
0068    * Query if the bottom circle is included
0069    */
0070   inline Standard_Boolean HasBottom() const { return myHasBottom; }
0071 
0072   /**
0073    * Query if the side surface is included
0074    */
0075   inline Standard_Boolean HasSide() const { return myHasSide; }
0076 
0077   /**
0078    * Query if the top surface is included
0079    */
0080   inline Standard_Boolean HasTop() const { return myHasTop; }
0081 
0082   /**
0083    * Set the Radius
0084    */
0085   inline void SetRadius(const Standard_Real theRadius)
0086   {
0087     myRadius = theRadius;
0088     SetModified();
0089   }
0090 
0091   /**
0092    * Set the Height
0093    */
0094   inline void SetHeight(const Standard_Real theHeight)
0095   {
0096     myHeight = theHeight;
0097     SetModified();
0098   }
0099 
0100   /**
0101    * Set which faces are included
0102    */
0103   inline void SetFaces(const Standard_Boolean hasBottom,
0104                        const Standard_Boolean hasSide,
0105                        const Standard_Boolean hasTop)
0106   {
0107     myHasBottom = hasBottom;
0108     myHasSide   = hasSide;
0109     myHasTop    = hasTop;
0110     SetModified();
0111   }
0112 
0113   /**
0114    * Query the primitive topology. This method returns a Null shape if there
0115    * is an internal error during the primitive creation (zero radius, etc.)
0116    */
0117   Standard_EXPORT virtual const Handle(TopoDS_TShape)& TShape() Standard_OVERRIDE;
0118 
0119   /**
0120    * Create a copy of this node.
0121    * If the parameter is null, a new copied node is created. Otherwise new node
0122    * is not created, but rather the given one is modified.
0123    */
0124   Standard_EXPORT virtual Handle(VrmlData_Node) Clone(const Handle(VrmlData_Node)& theOther) const
0125     Standard_OVERRIDE;
0126 
0127   /**
0128    * Fill the Node internal data from the given input stream.
0129    */
0130   Standard_EXPORT virtual VrmlData_ErrorStatus Read(VrmlData_InBuffer& theBuffer) Standard_OVERRIDE;
0131 
0132   /**
0133    * Write the Node to output stream.
0134    */
0135   Standard_EXPORT virtual VrmlData_ErrorStatus Write(const char* thePrefix) const Standard_OVERRIDE;
0136 
0137 protected:
0138   // ---------- PROTECTED METHODS ----------
0139 
0140 private:
0141   // ---------- PRIVATE FIELDS ----------
0142   Standard_Real    myRadius;
0143   Standard_Real    myHeight;
0144   Standard_Boolean myHasBottom : 1;
0145   Standard_Boolean myHasSide : 1;
0146   Standard_Boolean myHasTop : 1;
0147 
0148 public:
0149   // Declaration of CASCADE RTTI
0150   DEFINE_STANDARD_RTTI_INLINE(VrmlData_Cylinder, VrmlData_Geometry)
0151 };
0152 
0153 // Definition of HANDLE object using Standard_DefineHandle.hxx
0154 DEFINE_STANDARD_HANDLE(VrmlData_Cylinder, VrmlData_Geometry)
0155 
0156 #endif