createPointAlongOrNull

fun createPointAlongOrNull(polyline: Polyline, distance: Double): Point?

Return the point at the given distance along the line. If distance is less than or equal to zero, the point returned is coincident with the start of the line. If distance is greater than or equal to the line's length, the point returned is coincident with the end of the line. If the line has multiple parts, and the distance falls exactly on a boundary between two parts, the returned point will be coincident with either the end of one part or the start of the next, but which one is undetermined.

Supports true curves.

Return

The point at the given distance along the line.

Since

200.1.0