diff --git a/3-animation/1-bezier-curve/article.md b/3-animation/1-bezier-curve/article.md index c15588c0..4af01bb5 100644 --- a/3-animation/1-bezier-curve/article.md +++ b/3-animation/1-bezier-curve/article.md @@ -78,7 +78,7 @@ Instead of x1, y1, x2, y2, xx = (1−t)2 * 0 + 2(1−t)t * 0.5 + t2 * 1 = (1-t)t + t2 = 1 +- x = (1−t)2 * 0 + 2(1−t)t * 0.5 + t2 * 1 = (1-t)t + t2 = t - y = (1−t)2 * 0 + 2(1−t)t * 1 + t2 * 0 = 2(1-t)t = –t2 + 2t Now as `t` runs from `0` to `1`, the set of values `(x,y)` for each `t` forms the curve.