Gets a point on a loop, using Alpha (0.0-1.0), basically lerping along a set of points. Fast mode doesn't need to iterate at all. Slow mode is accurate for nonuniform distances, but iterates through every segment with sqrt distance calculated.
In
Exec
|
|
Loop
Array of Vectors
|
|
Alpha
Float
|
|
Fast
Boolean
|
|
Close Loop
Boolean
|
Out
Exec
|
|
Return Value
Vector
|
Gets a point on a loop, using Alpha (0.0-1.0), basically lerping along a set of points. Fast mode doesn't need to iterate at all. Slow mode is accurate for nonuniform distances, but iterates through every segment with sqrt distance calculated. |