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