Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove some unneeded copydocs
Since doxygen already copies docs for overridden methods
  • Loading branch information
nyalldawson committed Apr 3, 2017
1 parent 57eb237 commit 9c967a6
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions src/core/geometry/qgscircularstring.h
Expand Up @@ -57,28 +57,14 @@ class CORE_EXPORT QgsCircularString: public QgsCurve
*/
QgsPointV2 pointN( int i ) const;

/**
* @copydoc QgsCurve::points()
*/
void points( QgsPointSequence &pts ) const override;

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

/**
* @copydoc QgsAbstractGeometry::length()
*/
virtual double length() const override;

/**
* @copydoc QgsCurve::startPoint()
*/
virtual QgsPointV2 startPoint() const override;

/**
* @copydoc QgsCurve::endPoint()
*/
virtual QgsPointV2 endPoint() const override;

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

/**
* @copydoc QgsCurve::drawAsPolygon()
*/
void drawAsPolygon( QPainter &p ) const override;

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

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

/**
* @copydoc QgsCurve::pointAt()
*/
bool pointAt( int node, QgsPointV2 &point, QgsVertexId::VertexType &type ) const override;

/**
* @copydoc QgsCurve::sumUpArea()
*/
void sumUpArea( double &sum ) const override;

/**
* @copydoc QgsAbstractGeometry::hasCurvedSegments()
*/
bool hasCurvedSegments() const override { return true; }

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

0 comments on commit 9c967a6

Please sign in to comment.