OpenLexocad  27.0
RightCircularCylinder.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Core/PropertyAxis2.h>
4 #include <Core/PropertyReal.h>
5 #include <Geom/Ax2.h>
6 #include <Geom/Pnt.h>
7 #include <OpenLxApp/Geometry.h>
9 
10 #include <vector>
11 
12 
13 FORWARD_DECL(Part, Cylinder)
14 
15 namespace OpenLxApp
16 {
34 {
35  PROXY_HEADER(RightCircularCylinder, Part::Cylinder, IFCRIGHTCIRCULARCYLINDER)
36 
38  DECL_PROPERTY(RightCircularCylinder, Radius, double)
39  DECL_PROPERTY(RightCircularCylinder, Height, double)
40 
41 
42 public:
43  ~RightCircularCylinder(void);
44 
45 
46 private:
47  RightCircularCylinder(void) {}
48 };
49 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:26
Definition: Ax2.h:69
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
#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:245
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
A right circular cylinder is a CSG primitive in the form of a solid cylinder of finite height....
Definition: RightCircularCylinder.h:33