OpenLexocad  27.1
RectangleHollowProfileDef.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 FORWARD_DECL(Part, RectangleHollowProfileDef)
6 
7 namespace OpenLxApp
8 {
23 class LX_OPENLXAPP_EXPORT RectangleHollowProfileDef : public RectangleProfileDef
24 {
25  PROXY_HEADER(RectangleHollowProfileDef, Part::RectangleHollowProfileDef, IFCRECTANGLEHOLLOWPROFILEDEF)
26 
27  DECL_PROPERTY(RectangleHollowProfileDef, WallThickness, double)
28  DECL_PROPERTY(RectangleHollowProfileDef, InnerFilletRadius, double)
29  DECL_PROPERTY(RectangleHollowProfileDef, OuterFilletRadius, double)
30 
31 public:
32  virtual ~RectangleHollowProfileDef(void);
33 
34 protected:
36 };
37 } // namespace OpenLxApp
RectangleHollowProfileDef defines a section profile that provides the defining parameters of a rectan...
Definition: RectangleHollowProfileDef.h:23
#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
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
RectangleHollowProfileDef(void)
Definition: RectangleHollowProfileDef.h:35
RectangleProfileDef defines a rectangle as the profile definition used by the swept surface geometry ...
Definition: RectangleProfileDef.h:23