1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-31 03:59:58 +02:00

XeLaTeX interpration of LaTeX for localization

This commit is contained in:
Pomax
2017-02-26 22:27:36 -08:00
parent a889d16f36
commit ba54cc37f9
216 changed files with 477 additions and 404 deletions

View File

@@ -19,19 +19,19 @@ To help understand what's going on, the cubic graphic shows the full de Castelja
First, we construct the one-level-of-de-Casteljau-up points:
\[
\left \{ \begin{align}
\left \{ \begin{aligned}
v1 &= A' + \frac{e1 - A'}{t} \\
v2 &= A' + \frac{e2 - A'}{1 - t}
\end{align} \right .
\end{aligned} \right .
\]
And then we can compute the new control points:
\[
\left \{ \begin{align}
\left \{ \begin{aligned}
C1' &= v1 + \frac{v1 - start}{t} \\
C2' &= v2 + \frac{v2 - end}{1 - t}
\end{align} \right .
\end{aligned} \right .
\]
And that's cubic curve manipulation.