OpenLexocad  27.0
CartesianPoint.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Core/PropertyPoint.h>
4 #include <Geom/Pnt.h>
5 #include <OpenLxApp/Geometry.h>
7 
8 #include <vector>
9 
10 
11 FORWARD_DECL(Part, CartesianPoint)
12 
13 namespace OpenLxApp
14 {
26 {
27  PROXY_HEADER(CartesianPoint, Part::CartesianPoint, IFCCARTESIANPOINT)
29 
30 public:
31  ~CartesianPoint(void);
32 
33 private:
34  CartesianPoint(void) {}
35 };
36 } // namespace OpenLxApp
Defines a non-persistent 3D Cartesian point.
Definition: Pnt.h:42
#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
bgm::point< double, 3, bg::cs::cartesian > Point
Definition: RTree.h:25
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
A point defined by its coordinates in a two or three dimensional rectangular Cartesian coordinate sys...
Definition: CartesianPoint.h:25