Skip to content

Commit 2702a30

Browse files
lbartolettinyalldawson
authored andcommitted
Fix warn doc
1 parent b09cbae commit 2702a30

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

python/core/geometry/qgsgeometryutils.sip.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,8 @@ A method to project one skew line onto another.
516516
:param P12: is the second point that belongs to first skew line,
517517
:param P2: is the first point that belongs to second skew line,
518518
:param P22: is the second point that belongs to second skew line,
519-
:param X1: is the result projection point of line P2P22 onto line P1P12.
519+
:param X1: is the result projection point of line P2P22 onto line P1P12,
520+
:param epsilon: the tolerance to use.
520521

521522
:return: true if such point exists, false - otherwise.
522523
%End

src/core/geometry/qgsgeometryutils.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,8 @@ class CORE_EXPORT QgsGeometryUtils
530530
* \param P12 is the second point that belongs to first skew line,
531531
* \param P2 is the first point that belongs to second skew line,
532532
* \param P22 is the second point that belongs to second skew line,
533-
* \param X1 is the result projection point of line P2P22 onto line P1P12.
533+
* \param X1 is the result projection point of line P2P22 onto line P1P12,
534+
* \param epsilon the tolerance to use.
534535
* \return true if such point exists, false - otherwise.
535536
*/
536537
static bool skewLinesProjection( const QgsVector3D &P1, const QgsVector3D &P12,

0 commit comments

Comments
 (0)