Home
last modified time | relevance | path

Searched refs:interpolatePointOnLine (Results 1 – 14 of 14) sorted by relevance

/dports/graphics/qgis-ltr/qgis-3.16.16/src/analysis/mesh/
H A Dqgsmeshcontours.cpp171 … const QgsPoint xy = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction ); in exportPolygons()
188 … const QgsPoint xy = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction ); in exportPolygons()
221 … const QgsPoint xy1 = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction1 ); in exportPolygons()
226 … const QgsPoint xy2 = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction2 ); in exportPolygons()
353 … const QgsPoint xy = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction ); in exportLines()
/dports/graphics/qgis/qgis-3.22.3/src/analysis/mesh/
H A Dqgsmeshcontours.cpp183 … const QgsPoint xy = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction ); in exportPolygons()
200 … const QgsPoint xy = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction ); in exportPolygons()
233 … const QgsPoint xy1 = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction1 ); in exportPolygons()
238 … const QgsPoint xy2 = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction2 ); in exportPolygons()
371 … const QgsPoint xy = QgsGeometryUtils::interpolatePointOnLine( coords[i], coords[j], fraction ); in exportLines()
/dports/graphics/qgis-ltr/qgis-3.16.16/tests/src/core/
H A Dtestqgsgeometryutils.cpp1091 p = QgsGeometryUtils::interpolatePointOnLine( QgsPoint( 0, 0 ), QgsPoint( 10, 0 ), 1 ); in testInterpolatePointOnLineQgsPoint()
1094 p = QgsGeometryUtils::interpolatePointOnLine( QgsPoint( 0, 0 ), QgsPoint( 0, 10 ), 0 ); in testInterpolatePointOnLineQgsPoint()
1097 p = QgsGeometryUtils::interpolatePointOnLine( QgsPoint( 0, 0 ), QgsPoint( 0, 10 ), 1 ); in testInterpolatePointOnLineQgsPoint()
1135 QgsPointXY p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 10, 0, 0 ); in testInterpolatePointOnLine()
1138 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 10, 0, 1 ); in testInterpolatePointOnLine()
1141 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 0, 10, 0 ); in testInterpolatePointOnLine()
1144 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 0, 10, 1 ); in testInterpolatePointOnLine()
1147 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, -10, -6, 0.5 ); in testInterpolatePointOnLine()
1150 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, -10, -6, 0.2 ); in testInterpolatePointOnLine()
1153 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, -10, -6, 2 ); in testInterpolatePointOnLine()
[all …]
/dports/graphics/qgis/qgis-3.22.3/tests/src/core/geometry/
H A Dtestqgsgeometryutils.cpp1100 p = QgsGeometryUtils::interpolatePointOnLine( QgsPoint( 0, 0 ), QgsPoint( 10, 0 ), 1 ); in testInterpolatePointOnLineQgsPoint()
1103 p = QgsGeometryUtils::interpolatePointOnLine( QgsPoint( 0, 0 ), QgsPoint( 0, 10 ), 0 ); in testInterpolatePointOnLineQgsPoint()
1106 p = QgsGeometryUtils::interpolatePointOnLine( QgsPoint( 0, 0 ), QgsPoint( 0, 10 ), 1 ); in testInterpolatePointOnLineQgsPoint()
1144 QgsPointXY p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 10, 0, 0 ); in testInterpolatePointOnLine()
1147 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 10, 0, 1 ); in testInterpolatePointOnLine()
1150 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 0, 10, 0 ); in testInterpolatePointOnLine()
1153 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, 0, 10, 1 ); in testInterpolatePointOnLine()
1156 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, -10, -6, 0.5 ); in testInterpolatePointOnLine()
1159 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, -10, -6, 0.2 ); in testInterpolatePointOnLine()
1162 p = QgsGeometryUtils::interpolatePointOnLine( 0, 0, -10, -6, 2 ); in testInterpolatePointOnLine()
[all …]
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/geometry/
H A Dqgsgeometryutils.h559 …static QgsPointXY interpolatePointOnLine( double x1, double y1, double x2, double y2, double fract…
577 …static QgsPoint interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, double fraction ) …
H A Dqgsgeometryutils.cpp1401 QgsPoint QgsGeometryUtils::interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, const do… in interpolatePointOnLine() function in QgsGeometryUtils
1411 QgsPointXY QgsGeometryUtils::interpolatePointOnLine( const double x1, const double y1, const double… in interpolatePointOnLine() function in QgsGeometryUtils
1424 return interpolatePointOnLine( x1, y1, x2, y2, fraction ); in interpolatePointOnLineByValue()
H A Dqgsgeometry.cpp3264 …outputLine << ( i == 0 ? result->pointN( i ) : QgsGeometryUtils::interpolatePointOnLine( p1, p2, o… in smoothCurve()
3266 …t->numPoints() - 2 ? result->pointN( i + 1 ) : QgsGeometryUtils::interpolatePointOnLine( p1, p2, 1… in smoothCurve()
3274 outputLine << QgsGeometryUtils::interpolatePointOnLine( p1, p2, offset ); in smoothCurve()
3278 outputLine << QgsGeometryUtils::interpolatePointOnLine( p1, p2, 1.0 - offset ); in smoothCurve()
/dports/graphics/qgis/qgis-3.22.3/src/core/geometry/
H A Dqgsgeometryutils.h613 …static QgsPointXY interpolatePointOnLine( double x1, double y1, double x2, double y2, double fract…
631 …static QgsPoint interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, double fraction ) …
H A Dqgsgeometryutils.cpp1509 QgsPoint QgsGeometryUtils::interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, const do… in interpolatePointOnLine() function in QgsGeometryUtils
1519 QgsPointXY QgsGeometryUtils::interpolatePointOnLine( const double x1, const double y1, const double… in interpolatePointOnLine() function in QgsGeometryUtils
1532 return interpolatePointOnLine( x1, y1, x2, y2, fraction ); in interpolatePointOnLineByValue()
H A Dqgsgeometry.cpp3522 …outputLine << ( i == 0 ? result->pointN( i ) : QgsGeometryUtils::interpolatePointOnLine( p1, p2, o… in smoothCurve()
3524 …t->numPoints() - 2 ? result->pointN( i + 1 ) : QgsGeometryUtils::interpolatePointOnLine( p1, p2, 1… in smoothCurve()
3532 outputLine << QgsGeometryUtils::interpolatePointOnLine( p1, p2, offset ); in smoothCurve()
3536 outputLine << QgsGeometryUtils::interpolatePointOnLine( p1, p2, 1.0 - offset ); in smoothCurve()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/pal/
H A Dpointset.cpp589 …const QgsPointXY newStart = QgsGeometryUtils::interpolatePointOnLine( x1, y1, x0, y0, extensionFac… in extendLineByDistance()
625 …const QgsPointXY newEnd = QgsGeometryUtils::interpolatePointOnLine( xend1, yend1, xend0, yend0, ex… in extendLineByDistance()
/dports/graphics/qgis/qgis-3.22.3/src/core/pal/
H A Dpointset.cpp659 …const QgsPointXY newStart = QgsGeometryUtils::interpolatePointOnLine( x1, y1, x0, y0, extensionFac… in extendLineByDistance()
695 …const QgsPointXY newEnd = QgsGeometryUtils::interpolatePointOnLine( xend1, yend1, xend0, yend0, ex… in extendLineByDistance()
/dports/graphics/qgis-ltr/qgis-3.16.16/python/core/auto_generated/geometry/
H A Dqgsgeometryutils.sip.in499 …static QgsPointXY interpolatePointOnLine( double x1, double y1, double x2, double y2, double fract…
515 …static QgsPoint interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, double fraction ) …
544 .. seealso:: :py:func:`interpolatePointOnLine`
/dports/graphics/qgis/qgis-3.22.3/python/core/auto_generated/geometry/
H A Dqgsgeometryutils.sip.in558 …static QgsPointXY interpolatePointOnLine( double x1, double y1, double x2, double y2, double fract…
574 …static QgsPoint interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, double fraction ) …
603 .. seealso:: :py:func:`interpolatePointOnLine`