Correct number of points

This commit is contained in:
yanxun827 2018-03-10 18:49:13 +00:00 committed by GitHub
parent 9365275467
commit 980dee303c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ If you look closely at these curves, you can immediately notice:
1. **Points are not always on curve.** That's perfectly normal, later we'll see how the curve is built. 1. **Points are not always on curve.** That's perfectly normal, later we'll see how the curve is built.
2. **The curve order equals the number of points minus one**. 2. **The curve order equals the number of points minus one**.
For two points we have a linear curve (that's a straight line), for three points -- quadratic curve (parabolic), for three points -- cubic curve. For two points we have a linear curve (that's a straight line), for three points -- quadratic curve (parabolic), for four points -- cubic curve.
3. **A curve is always inside the [convex hull](https://en.wikipedia.org/wiki/Convex_hull) of control points:** 3. **A curve is always inside the [convex hull](https://en.wikipedia.org/wiki/Convex_hull) of control points:**
![](bezier4-e.png) ![](bezier3-e.png) ![](bezier4-e.png) ![](bezier3-e.png)