OpenLexocad  27.1
RightCircularCylinder.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Geom/Ax2.h>
4 #include <OpenLxApp/Geometry.h>
5 
6 
7 FORWARD_DECL(Part, Cylinder)
8 
9 namespace OpenLxApp
10 {
27 class LX_OPENLXAPP_EXPORT RightCircularCylinder : public Geometry
28 {
29  PROXY_HEADER(RightCircularCylinder, Part::Cylinder, IFCRIGHTCIRCULARCYLINDER)
30 
32  DECL_PROPERTY(RightCircularCylinder, Radius, double)
33  DECL_PROPERTY(RightCircularCylinder, Height, double)
34 
35 
36 public:
37  ~RightCircularCylinder(void);
38 
39 
40 private:
41  RightCircularCylinder(void) {}
42 };
43 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:23
Definition: Ax2.h:67
Definition: ActiveScript.h:7
#define DECL_PROPERTY(_class_, _name_, _type_)
DECL_PROPERTY and DEFINE_PROPERTY are macros used for mapping between the properties of Lexocad objec...
Definition: Globals.h:242
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
A right circular cylinder is a CSG primitive in the form of a solid cylinder of finite height....
Definition: RightCircularCylinder.h:27