Skip to content

Commit 9c967a6

Browse files
committedApr 3, 2017
Remove some unneeded copydocs
Since doxygen already copies docs for overridden methods
1 parent 57eb237 commit 9c967a6

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed
 

‎src/core/geometry/qgscircularstring.h

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -57,28 +57,14 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
5757
*/
5858
QgsPointV2 pointN( int i ) const;
5959

60-
/**
61-
* @copydoc QgsCurve::points()
62-
*/
6360
void points( QgsPointSequence &pts ) const override;
6461

6562
/** Sets the circular string's points
6663
*/
6764
void setPoints( const QgsPointSequence &points );
6865

69-
/**
70-
* @copydoc QgsAbstractGeometry::length()
71-
*/
7266
virtual double length() const override;
73-
74-
/**
75-
* @copydoc QgsCurve::startPoint()
76-
*/
7767
virtual QgsPointV2 startPoint() const override;
78-
79-
/**
80-
* @copydoc QgsCurve::endPoint()
81-
*/
8268
virtual QgsPointV2 endPoint() const override;
8369

8470
/** Returns a new line string geometry corresponding to a segmentized approximation
@@ -93,9 +79,6 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
9379
void transform( const QTransform &t ) override;
9480
void addToPainterPath( QPainterPath &path ) const override;
9581

96-
/**
97-
* @copydoc QgsCurve::drawAsPolygon()
98-
*/
9982
void drawAsPolygon( QPainter &p ) const override;
10083

10184
virtual bool insertVertex( QgsVertexId position, const QgsPointV2 &vertex ) override;
@@ -104,19 +87,8 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
10487

10588
double closestSegment( const QgsPointV2 &pt, QgsPointV2 &segmentPt, QgsVertexId &vertexAfter, bool *leftOf, double epsilon ) const override;
10689

107-
/**
108-
* @copydoc QgsCurve::pointAt()
109-
*/
11090
bool pointAt( int node, QgsPointV2 &point, QgsVertexId::VertexType &type ) const override;
111-
112-
/**
113-
* @copydoc QgsCurve::sumUpArea()
114-
*/
11591
void sumUpArea( double &sum ) const override;
116-
117-
/**
118-
* @copydoc QgsAbstractGeometry::hasCurvedSegments()
119-
*/
12092
bool hasCurvedSegments() const override { return true; }
12193

12294
/** Returns approximate rotation angle for a vertex. Usually average angle between adjacent segments.

0 commit comments

Comments
 (0)
Please sign in to comment.