QGIS API Documentation
2.18.21-Las Palmas (9fba24a)
|
ParametricLine is an Interface for parametric lines. More...
#include <ParametricLine.h>
Public Member Functions | |
ParametricLine () | |
Default constructor. More... | |
ParametricLine (ParametricLine *par, QVector< Point3D *> *controlpoly) | |
Constructor, par is a pointer to the parent object, controlpoly the controlpolygon. More... | |
virtual | ~ParametricLine () |
Destructor. More... | |
virtual void | add (ParametricLine *pl)=0 |
virtual void | calcFirstDer (float t, Vector3D *v)=0 |
virtual void | calcPoint (float t, Point3D *)=0 |
virtual void | calcSecDer (float t, Vector3D *v)=0 |
virtual void | changeDirection ()=0 |
virtual const Point3D * | getControlPoint (int number) const =0 |
virtual const QVector< Point3D * > * | getControlPoly () const =0 |
virtual int | getDegree () const =0 |
virtual ParametricLine * | getParent () const =0 |
virtual void | remove (int i)=0 |
virtual void | setControlPoly (QVector< Point3D *> *cp)=0 |
virtual void | setParent (ParametricLine *paral)=0 |
Protected Attributes | |
QVector< Point3D * > * | mControlPoly |
MControlPoly stores the points of the control polygon. More... | |
int | mDegree |
Degree of the parametric Line. More... | |
ParametricLine * | mParent |
Pointer to the parent object. More... | |
ParametricLine is an Interface for parametric lines.
It is possible, that a parametric line is composed of several parametric lines (see the composite pattern in Gamma et al. 'Design Patterns'). Do not build instances of it since it is an abstract class.
Definition at line 27 of file ParametricLine.h.
|
inline |
Default constructor.
Definition at line 63 of file ParametricLine.h.
|
inline |
Constructor, par is a pointer to the parent object, controlpoly the controlpolygon.
Definition at line 71 of file ParametricLine.h.
|
inlinevirtual |
Destructor.
Definition at line 79 of file ParametricLine.h.
|
pure virtual |
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
Implemented in Bezier3D.
|
pure virtual |
Implemented in Bezier3D.
MControlPoly stores the points of the control polygon.
Definition at line 35 of file ParametricLine.h.
|
protected |
Degree of the parametric Line.
Definition at line 31 of file ParametricLine.h.
|
protected |
Pointer to the parent object.
If there isn't one, mParent is 0
Definition at line 33 of file ParametricLine.h.