You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/analysis/interpolation/Bezier3D.h
+4-11Lines changed: 4 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,10 @@
17
17
#ifndef BEZIER3D_H
18
18
#defineBEZIER3D_H
19
19
20
-
usingnamespacestd;
21
-
22
20
#include"ParametricLine.h"
23
21
#include"Vector3D.h"
24
22
#include"MathUtils.h"
23
+
#include"qgslogger.h"
25
24
26
25
/**Class Bezier3D represents a bezier curve, represented by control points. Parameter t is running from 0 to 1. The class is capable to calculate the curve point and the first two derivatives belonging to t.*/
27
26
classANALYSIS_EXPORT Bezier3D: public ParametricLine
@@ -86,12 +85,12 @@ inline Bezier3D::~Bezier3D()
86
85
87
86
inlinevoidBezier3D::add( ParametricLine* pl )
88
87
{
89
-
cout << "Error!!!!! A Bezier-curve can not be parent of a ParametricLine."<< endl;
88
+
QgsDebugMsg( "Error!!!!! A Bezier-curve can not be parent of a ParametricLine.");
90
89
}
91
90
92
91
inlinevoidBezier3D::remove( int i )
93
92
{
94
-
cout << "Error!!!!! A Bezier-curve has no Childs to remove."<< endl;
93
+
QgsDebugMsg( "Error!!!!! A Bezier-curve has no Childs to remove.");
95
94
}
96
95
97
96
//-----------------------------------------------setters and getters---------------------------------------------------------------
0 commit comments