QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
22 #include "qgis_analysis.h"
57 void remove(
int i )
override;
87 QgsDebugMsg( QStringLiteral(
"Error!!!!! A Bezier-curve can not be parent of a ParametricLine." ) );
93 QgsDebugMsg( QStringLiteral(
"Error!!!!! A Bezier-curve has no children to remove." ) );
const QgsPoint * getControlPoint(int number) const override
Returns a control point.
void remove(int i) override
Do not use this method, since a Bezier curve does not consist of other curves.
int mDegree
Degree of the parametric Line.
Point geometry type, with support for z-dimension and m-values.
virtual ParametricLine * getParent() const =0
virtual void changeDirection()=0
int getDegree() const override
Returns the degree of the curve.
virtual void remove(int i)=0
Bezier3D()=default
Default constructor.
virtual void calcFirstDer(float t, Vector3D *v)=0
virtual const QVector< QgsPoint * > * getControlPoly() const =0
const QVector< QgsPoint * > * getControlPoly() const override
Returns a pointer to the control polygon.
void setControlPoly(QVector< QgsPoint * > *cp) override
Sets the control polygon.
virtual void add(ParametricLine *pl)=0
void setParent(ParametricLine *par) override
Sets the parent.
virtual int getDegree() const =0
virtual void calcSecDer(float t, Vector3D *v)=0
Class Bezier3D represents a bezier curve, represented by control points.
virtual void setControlPoly(QVector< QgsPoint * > *cp)=0
virtual void setParent(ParametricLine *paral)=0
ParametricLine * getParent() const override
Returns the parent.
ParametricLine * mParent
Pointer to the parent object. If there isn't one, mParent is 0.
QVector< QgsPoint * > * mControlPoly
MControlPoly stores the points of the control polygon.
Class Vector3D represents a 3D-Vector, capable to store x-,y- and z-coordinates in double values.
virtual const QgsPoint * getControlPoint(int number) const =0
virtual void calcPoint(float t, QgsPoint *p)=0
void add(ParametricLine *pl) override
Do not use this method, since a Bezier curve does not consist of other curves.
ParametricLine is an Interface for parametric lines.