From adfb099a8457c269759798b97797bd1f4087eb8f Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 29 Mar 2020 16:40:34 +0300 Subject: [PATCH] Update article.md --- 7-animation/1-bezier-curve/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-animation/1-bezier-curve/article.md b/7-animation/1-bezier-curve/article.md index c1803dea..8809e840 100644 --- a/7-animation/1-bezier-curve/article.md +++ b/7-animation/1-bezier-curve/article.md @@ -176,7 +176,7 @@ Instead of x1, y1, x2, y2, xx = (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 +- y = (1−t)2 * 0 + 2(1−t)t * 1 + t2 * 0 = 2(1-t)t = –2t2 + 2t Now as `t` runs from `0` to `1`, the set of values `(x,y)` for each `t` forms the curve for such control points.