OpenLexocad  27.1
CircleProfileDef.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 
6 namespace Part {
7 class CircleProfileDef;
8 }
9 
10 namespace OpenLxApp
11 {
23 class LX_OPENLXAPP_EXPORT CircleProfileDef : public ParameterizedProfileDef
24 {
25  PROXY_HEADER(CircleProfileDef, Part::CircleProfileDef, IFCCIRCLEPROFILEDEF)
26 
27  DECL_PROPERTY(CircleProfileDef, Radius, double)
28 
29 public:
30  virtual ~CircleProfileDef(void);
31 
32 protected:
34 };
35 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
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
CircleProfileDef(void)
Definition: CircleProfileDef.h:33
CircleProfileDef defines a circle as the profile definition used by the swept surface geometry or by ...
Definition: CircleProfileDef.h:23