OpenLexocad  27.1
ElementarySurface.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Surface.h>
4 
5 
6 
7 FORWARD_DECL(Part, ElementarySurface)
8 
9 namespace OpenLxApp
10 {
20 class LX_OPENLXAPP_EXPORT ElementarySurface : public Surface
21 {
22  PROXY_HEADER_ABSTRACT(ElementarySurface, Part::ElementarySurface, IFCELEMENTARYSURFACE)
23 
24 public:
25  virtual ~ElementarySurface(void);
26 
27 protected:
29 };
30 } // namespace OpenLxApp
#define PROXY_HEADER_ABSTRACT(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:137
Definition: ActiveScript.h:7
A surface can be envisioned as a set of connected points in 3-dimensional space which is always local...
Definition: Surface.h:20
ElementarySurface(void)
Definition: ElementarySurface.h:28
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
An elementary surface is a simple analytic surface with defined parametric representation....
Definition: ElementarySurface.h:20