OpenLexocad  27.1
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
Defines a non-persistent 3D Cartesian point.
Definition: Pnt.h:43
BoundedCurve()
Definition: BoundedCurve.h:30
#define PROXY_HEADER_ABSTRACT(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:137
Definition: ActiveScript.h:7
A bounded curve is a curve of finite arc length with identifiable end points. (Definition from ISO/CD...
Definition: BoundedCurve.h:19
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
A curve can be envisioned as the path of a point moving in its coordinate space. (Definition from ISO...
Definition: Curve.h:27