diff --git a/components/sections/matrix/content.en-GB.md b/components/sections/matrix/content.en-GB.md index 95e05664..4ae837e3 100644 --- a/components/sections/matrix/content.en-GB.md +++ b/components/sections/matrix/content.en-GB.md @@ -1,6 +1,6 @@ # Bézier curvatures as matrix operations -We can also represent Bézier as matrix operations, by expressing the Bézier formula as a polynomial basis function, the weight matrix, and the actual coordinates as matrix. Let's look at what this means for the cubic curve: +We can also represent Bézier as matrix operations, by expressing the Bézier formula as a polynomial basis function and a coefficients matrix, and the actual coordinates as matrix. Let's look at what this means for the cubic curve: \[ B(t) = P_1 \cdot (1-t)^3 + P_2 \cdot 3 \cdot (1-t)^2 \cdot t + P_3 \cdot 3 \cdot (1-t) \cdot t^2 + P_4 \cdot t^3