OpenLexocad  27.0
BooleanClippingResult.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, Cut)
12 
13 
14 namespace OpenLxApp
15 {
24 {
25  PROXY_HEADER(BooleanClippingResult, Part::Cut, IFCBOOLEANCLIPPINGRESULT)
26 
27 public:
28  ~BooleanClippingResult(void);
29 
31  void setTool(std::shared_ptr<Geometry> toolGeo);
32  std::shared_ptr<Geometry> getTool() const;
34  void setBlank(std::shared_ptr<Geometry> blankGeo);
35  std::shared_ptr<Geometry> getBlank() const;
36 
37 private:
38  BooleanClippingResult(void) {}
39 };
40 } // 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 FORWARD_DECL(x, y)
Definition: Globals.h:96
Boolean difference / cut operation.
Definition: BooleanClippingResult.h:23