From 22cb811376e4e1d5dae40bc34641c1b58f44a1f4 Mon Sep 17 00:00:00 2001 From: Muhammad Ragib Hasin Date: Mon, 22 Jun 2020 04:29:00 +0600 Subject: [PATCH] Fixed typo in section #extremities (#255) A comma was mistyped as dot in definition of B'(t) for cubic. --- components/sections/extremities/content.en-GB.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sections/extremities/content.en-GB.md b/components/sections/extremities/content.en-GB.md index faeaeb5e..2398fd21 100644 --- a/components/sections/extremities/content.en-GB.md +++ b/components/sections/extremities/content.en-GB.md @@ -32,7 +32,7 @@ First we turn our cubic Bézier function into a quadratic one, by following the \[ \begin{array}{l} B(t)\ uses\ \{ p_1,p_2,p_3,p_4 \} \\ - B'(t)\ uses\ \{ v_1.v_2,v_3 \},\ where\ v_1 = 3(p_2-p_1),\ v_2 = 3(p_3-p_2),\ v_3 = 3(p_4-p_3) + B'(t)\ uses\ \{ v_1,v_2,v_3 \},\ where\ v_1 = 3(p_2-p_1),\ v_2 = 3(p_3-p_2),\ v_3 = 3(p_4-p_3) \end{array} \]