OpenLexocad  27.1
RectangleProfileDef.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 
6 
7 FORWARD_DECL(Part, RectangleProfileDef)
8 
9 namespace OpenLxApp
10 {
23 class LX_OPENLXAPP_EXPORT RectangleProfileDef : public ParameterizedProfileDef
24 {
25  PROXY_HEADER(RectangleProfileDef, Part::RectangleProfileDef, IFCRECTANGLEPROFILEDEF)
26 
27  DECL_PROPERTY(RectangleProfileDef, XDim, double)
28  DECL_PROPERTY(RectangleProfileDef, YDim, double)
29 
30 public:
31  virtual ~RectangleProfileDef(void);
32 
33 protected:
35 };
36 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
RectangleProfileDef(void)
Definition: RectangleProfileDef.h:34
The parameterized profile definition defines a 2D position coordinate system to which the parameters ...
Definition: ParameterizedProfileDef.h:25
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
RectangleProfileDef defines a rectangle as the profile definition used by the swept surface geometry ...
Definition: RectangleProfileDef.h:23