LineGeometry.PointAlongLine Methods
Returns a Point along the LineGeometry.
Overload List
Name | Description | |
---|---|---|
Public method | PointAlongLine(System.Int32 startNode, System.Double distance) | Returns a Point along the LineGeometry. |
PointAlongLine(System.Int32 startNode, System.Double distance, out System.Int32 segment, out System.Double angle) | Returns a Point along the LineGeometry. |
PointAlongLine(System.Int32 startNode, System.Double distance)
Returns a Point along the LineGeometry.Syntax
public Point PointAlongLine (
System.Int32 startNode,
System.Double distance
)
Parameters
The index of the node that distance is specified from.
Distance from startNode along the line where the point will be offset. A negative value means moving backwards along the line from startNode. Unit: same as the coordinates of the line geometry.
Return Value
A point that lies distance along the line from startNode. The point will be clamped to the start or end of the line if distance added to the distance to the startNode is less than 0 or greater than the length of the line.
Remarks
This method throws an exception if there is less than two points in the geometry or if the index is out of bounds.
This method operates on 2D geometries and all z-coordinate values are ignored.
PointAlongLine(System.Int32 startNode, System.Double distance, out System.Int32 segment, out System.Double angle)
Returns a Point along the LineGeometry.Syntax
public Point PointAlongLine (
System.Int32 startNode,
System.Double distance,
out System.Int32 segment,
out System.Double angle
)
Parameters
The index of the node that distance is specified from.
Distance from startNode along the line where the point will be offset. A negative value means moving backwards along the line from startNode. Unit: same as the coordinates of the line geometry.
Will be set to the index of the segment that contains the returned point.
Will be set to the horizontal direction of the segment that contains the returned point. Unit: Radians counterclockwise from right.
Return Value
A point that lies distance along the line from startNode. The point will be clamped to the start or end of the line if distance added to the distance to the startNode is less than 0 or greater than the length of the line.
Remarks
This method throws an exception if there is less than two points in the geometry or if the index is out of bounds.
This method operates on 2D geometries and all z-coordinate values are ignored.
Platforms
Windows, Linux, Android