OpenLexocad  28.0
BooleanClippingResult.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Geometry.h>
4 
5 
6 
7 
8 FORWARD_DECL(Part, Cut)
9 
10 
11 namespace OpenLxApp
12 {
20 class LX_OPENLXAPP_EXPORT BooleanClippingResult : public Geometry
21 {
22  PROXY_HEADER(BooleanClippingResult, Part::Cut, IFCBOOLEANCLIPPINGRESULT)
23 
24 public:
26 
28  void setTool(std::shared_ptr<Geometry> toolGeo);
29  std::shared_ptr<Geometry> getTool() const;
31  void setBlank(std::shared_ptr<Geometry> blankGeo);
32  std::shared_ptr<Geometry> getBlank() const;
33 
34 private:
35  BooleanClippingResult(void) {}
36 };
37 } // namespace OpenLxApp
OpenLxApp
Definition: ActiveScript.h:10
FORWARD_DECL
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
OpenLxApp::BooleanClippingResult::getBlank
std::shared_ptr< Geometry > getBlank() const
OpenLxApp::BooleanClippingResult::getTool
std::shared_ptr< Geometry > getTool() const
OpenLxApp::BooleanClippingResult
Boolean difference / cut operation.
Definition: BooleanClippingResult.h:21
OpenLxApp::Geometry
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:24
OpenLxApp::BooleanClippingResult::setTool
void setTool(std::shared_ptr< Geometry > toolGeo)
Sets the tool geometry ( = the 'hard' geo )
OpenLxApp::BooleanClippingResult::~BooleanClippingResult
~BooleanClippingResult(void)
Geometry.h
PROXY_HEADER
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
OpenLxApp::BooleanClippingResult::setBlank
void setBlank(std::shared_ptr< Geometry > blankGeo)
Sets the blank geometry ( = the 'soft' geo )