MoonTools.Curve/README.md

19 lines
499 B
Markdown
Raw Normal View History

2019-10-29 21:57:07 +00:00
# MoonTools.Core.Curve
Implements quadratic and cubic Bezier curves in 2D and 3D.
## Example
```cs
var myCurve = new CubicBezierCurve3D(
new Vector3(-4, -4, -3),
new Vector3(-2, 4, 0),
new Vector3(2, -4, 3),
new Vector3(4, 4, 0)
);
myCurve.Point(0.5f); // => Vector3(0, 0, 0.75f)
myCurve.Point(3, 2, 4); // => Vector3(0, 0, 0.75f);
myCurve.Velocity(0.5f); // => Vector3(9, 0, 4.5f)
myCurve.Velocity(3, 2, 4); // => Vector3(9, 0, 4.5f);
```