mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-15 05:04:25 +02:00
change "weight matrix" to "coefficients matrix"
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Bézier curvatures as matrix operations
|
# 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
|
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
|
||||||
|
Reference in New Issue
Block a user