OpenLexocad  27.1
Plane.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Geom/Ax2.h>
5 
6 
7 
8 FORWARD_DECL(Part, Plane)
9 
10 namespace OpenLxApp
11 {
21 class LX_OPENLXAPP_EXPORT Plane : public ElementarySurface
22 {
23  PROXY_HEADER(Plane, Part::Plane, IFCPLANE)
24 
25  DECL_PROPERTY(Plane, Position, Geom::Ax2)
26 
27 public:
28  ~Plane(void);
29 
30 
31 
32 private:
33  Plane(void) {}
34 };
35 
36 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
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
A plane is an unbounded surface with a constant normal. A plane is defined by a point on the plane an...
Definition: Plane.h:21
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
An elementary surface is a simple analytic surface with defined parametric representation....
Definition: ElementarySurface.h:20