OpenLexocad  27.0
FacetedBrep.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Geom/Pnt.h>
4 #include <OpenLxApp/Geometry.h>
6 
7 #include <vector>
8 
9 
10 
11 FORWARD_DECL(Part, FacetedBrep)
12 
13 namespace OpenLxApp
14 {
90 {
91  PROXY_HEADER(FacetedBrep, Part::FacetedBrep, IFCFACETEDBREP)
92 
93  DECL_PROPERTY(FacetedBrep, Model, std::vector<int>)
94  DECL_PROPERTY(FacetedBrep, Points, std::vector<Geom::Pnt>)
95 
96 public:
97  ~FacetedBrep(void);
98  bool setShape(pShape aShape);
99 
100 private:
101  FacetedBrep(void) {}
102 };
103 
104 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:26
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
#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:245
A faceted brep is a simple form of boundary representation model in which all faces are planar and al...
Definition: FacetedBrep.h:89
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
std::shared_ptr< Topo::Shape > pShape
Definition: Variant.h:80