OpenLexocad  28.0
BoundedCurve.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Curve.h>
4 
5 
6 FORWARD_DECL(Part, BoundedCurve)
7 
8 namespace OpenLxApp
9 {
19 class LX_OPENLXAPP_EXPORT BoundedCurve : public Curve
20 {
21  PROXY_HEADER_ABSTRACT(BoundedCurve, Part::BoundedCurve, IFCBOUNDEDCURVE)
22 
23 public:
24  bool getStartPoint(Geom::Pnt& p) const;
25  bool getEndPoint(Geom::Pnt& p) const;
26 
27  virtual ~BoundedCurve();
28 
29 protected:
31 };
32 
33 } // namespace OpenLxApp
OpenLxApp
Definition: ActiveScript.h:10
FORWARD_DECL
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
OpenLxApp::BoundedCurve::getEndPoint
bool getEndPoint(Geom::Pnt &p) const
OpenLxApp::Curve
A curve can be envisioned as the path of a point moving in its coordinate space. (Definition from ISO...
Definition: Curve.h:28
OpenLxApp::BoundedCurve::getStartPoint
bool getStartPoint(Geom::Pnt &p) const
PROXY_HEADER_ABSTRACT
#define PROXY_HEADER_ABSTRACT(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:137
OpenLxApp::BoundedCurve::~BoundedCurve
virtual ~BoundedCurve()
Geom::Pnt
Defines a non-persistent 3D Cartesian point.
Definition: Pnt.h:44
Curve.h
OpenLxApp::BoundedCurve
A bounded curve is a curve of finite arc length with identifiable end points. (Definition from ISO/CD...
Definition: BoundedCurve.h:20
OpenLxApp::BoundedCurve::BoundedCurve
BoundedCurve()
Definition: BoundedCurve.h:30