Bezier Module
Bezier interpolates data between 2 points using a number of control points, which determine the degree of the interpolated curve.
Functions and values
| Function or value | Description |
Full Usage:
interpolate values
Parameters:
Vector<float>[]
-
an array containg the starting point, the control points, and the end point to use for interpolation
Returns: float -> Vector<float>
The generated interpolation function
|
|
Full Usage:
lerp p1 p2 t
Parameters:
Vector<float>
p2 : Vector<float>
t : float
Returns: Vector<float>
Modifiers: inline |
|
FSharp.Stats