Search
InternalUtils.PointAlongLength Method (Double, IList(Point))
See Also
 






Returns a point lying at the specified distance from the start point along the path specified via the collection of points.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public static Point PointAlongLength (
    double distance,
    IList<Point> segments
)

Visual Basic  Copy Code

Public Shared Function PointAlongLength( _
    distance As Double, _
    segments As IList(Of Point) _
) As Point

 Parameters

distance

A float value specifying the desired distance.

segments

A list of points specifying the path.

 Return Value

A Point structure specifying the point coordinates.

 See Also