@@ -57,28 +57,14 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
57
57
*/
58
58
QgsPointV2 pointN ( int i ) const ;
59
59
60
- /* *
61
- * @copydoc QgsCurve::points()
62
- */
63
60
void points ( QgsPointSequence &pts ) const override ;
64
61
65
62
/* * Sets the circular string's points
66
63
*/
67
64
void setPoints ( const QgsPointSequence &points );
68
65
69
- /* *
70
- * @copydoc QgsAbstractGeometry::length()
71
- */
72
66
virtual double length () const override ;
73
-
74
- /* *
75
- * @copydoc QgsCurve::startPoint()
76
- */
77
67
virtual QgsPointV2 startPoint () const override ;
78
-
79
- /* *
80
- * @copydoc QgsCurve::endPoint()
81
- */
82
68
virtual QgsPointV2 endPoint () const override ;
83
69
84
70
/* * Returns a new line string geometry corresponding to a segmentized approximation
@@ -93,9 +79,6 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
93
79
void transform ( const QTransform &t ) override ;
94
80
void addToPainterPath ( QPainterPath &path ) const override ;
95
81
96
- /* *
97
- * @copydoc QgsCurve::drawAsPolygon()
98
- */
99
82
void drawAsPolygon ( QPainter &p ) const override ;
100
83
101
84
virtual bool insertVertex ( QgsVertexId position, const QgsPointV2 &vertex ) override ;
@@ -104,19 +87,8 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
104
87
105
88
double closestSegment ( const QgsPointV2 &pt, QgsPointV2 &segmentPt, QgsVertexId &vertexAfter, bool *leftOf, double epsilon ) const override ;
106
89
107
- /* *
108
- * @copydoc QgsCurve::pointAt()
109
- */
110
90
bool pointAt ( int node, QgsPointV2 &point, QgsVertexId::VertexType &type ) const override ;
111
-
112
- /* *
113
- * @copydoc QgsCurve::sumUpArea()
114
- */
115
91
void sumUpArea ( double &sum ) const override ;
116
-
117
- /* *
118
- * @copydoc QgsAbstractGeometry::hasCurvedSegments()
119
- */
120
92
bool hasCurvedSegments () const override { return true ; }
121
93
122
94
/* * Returns approximate rotation angle for a vertex. Usually average angle between adjacent segments.
0 commit comments