OpenLexocad  27.0
Ellipse.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Core/PropertyReal.h>
4 #include <Geom/Ax2.h>
5 #include <OpenLxApp/Conic.h>
6 
7 
8 FORWARD_DECL(Part, Ellipse)
9 
10 namespace OpenLxApp
11 {
22 {
23  PROXY_HEADER(Ellipse, Part::Ellipse, IFCELLIPSE)
24 
25  DECL_PROPERTY(Ellipse, SemiAxis1, double)
26  DECL_PROPERTY(Ellipse, SemiAxis2, double)
27 
28 public:
29  ~Ellipse(void);
30 
31 private:
32  Ellipse(void) {}
33 };
34 
35 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
#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
An IfcEllipse is a curve consisting of a set of points whose distances to two fixed points add to the...
Definition: Ellipse.h:21
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
A conic is a planar curve which could be produced by intersecting a plane with a cone....
Definition: Conic.h:24