Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 19, 2021
1 parent f759c59 commit 0c5ffe7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Expand Up @@ -502,7 +502,7 @@ Averages two angles, correctly handling negative angles and ensuring the result
%Docstring
Returns a number representing the closest side of a rectangle defined by /a right,
``bottom``, ``left``, ``top`` to the point at (``x``, ``y``), where
the point may be in ther interior of the rectangle or outside it.
the point may be in the interior of the rectangle or outside it.

The returned value may be:

Expand Down
8 changes: 4 additions & 4 deletions src/core/geometry/qgsgeometryutils.cpp
Expand Up @@ -638,14 +638,14 @@ void QgsGeometryUtils::perpendicularOffsetPointAlongSegment( double x1, double y
const double mY = y1 + ( y2 - y1 ) * proportion;
const double pX = x1 - x2;
const double pY = y1 - y2;
double normalX = -pY;
double normalX = -pY; //#spellok
double normalY = pX;
const double normalLength = sqrt( ( normalX * normalX ) + ( normalY * normalY ) );
normalX /= normalLength;
const double normalLength = sqrt( ( normalX * normalX ) + ( normalY * normalY ) ); //#spellok
normalX /= normalLength; //#spellok
normalY /= normalLength;

*x = mX + offset * normalX;
*y = mY + offset * normalY;
*y = mY + offset * normalY; //#spellok
}

QgsPoint QgsGeometryUtils::interpolatePointOnArc( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double distance )
Expand Down
2 changes: 1 addition & 1 deletion src/core/geometry/qgsgeometryutils.h
Expand Up @@ -550,7 +550,7 @@ class CORE_EXPORT QgsGeometryUtils
/**
* Returns a number representing the closest side of a rectangle defined by /a right,
* \a bottom, \a left, \a top to the point at (\a x, \a y), where
* the point may be in ther interior of the rectangle or outside it.
* the point may be in the interior of the rectangle or outside it.
*
* The returned value may be:
*
Expand Down

0 comments on commit 0c5ffe7

Please sign in to comment.