1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-03-14 19:29:51 +01:00
This commit is contained in:
Pomax 2015-12-29 17:13:43 -08:00
parent 0290d91a02
commit 2e6067dbae
2 changed files with 11 additions and 11 deletions

View File

@ -21911,7 +21911,7 @@
React.createElement(
LaTeX,
null,
"\\[ f(x) = \\sin(x) \\]"
"\\[ f(x) = \\cos(x) \\]"
),
React.createElement(
"p",
@ -21960,7 +21960,7 @@
'{',
"matrix",
'}',
"f(a) = \\sin(a) \\\\ f(b) = \\cos(b) \\end",
"f(a) = \\cos(a) \\\\ f(b) = \\sin(b) \\end",
'{',
"matrix",
'}',
@ -21998,7 +21998,7 @@
'{',
"matrix",
'}',
"f_a(t) = \\sin(t) \\\\ f_b(t) = \\cos(t) \\end",
"f_a(t) = \\cos(t) \\\\ f_b(t) = \\sin(t) \\end",
'{',
"matrix",
'}',
@ -22072,7 +22072,7 @@
'{',
"matrix",
'}',
"x = \\sin(t) \\\\ y = \\cos(t) \\end",
"x = \\cos(t) \\\\ y = \\sin(t) \\end",
'{',
"matrix",
'}',

View File

@ -30,7 +30,7 @@ var Explanation = React.createClass({
some other value, using some kind of number manipulation:</p>
<LaTeX>\[
f(x) = \sin(x)
f(x) = \cos(x)
\]</LaTeX>
<p>The notation <i>f(x)</i> is the standard way to show that it's a function (by convention
@ -41,8 +41,8 @@ var Explanation = React.createClass({
Let's take the following two functions:</p>
<LaTeX>\[\begin{matrix}
f(a) = \sin(a) \\
f(b) = \cos(b)
f(a) = \cos(a) \\
f(b) = \sin(b)
\end{matrix}\]</LaTeX>
<p>There's nothing really remarkable about them, they're just a sine and cosine function,
@ -53,8 +53,8 @@ var Explanation = React.createClass({
<LaTeX>\[
\left \{ \begin{matrix}
f_a(t) = \sin(t) \\
f_b(t) = \cos(t)
f_a(t) = \cos(t) \\
f_b(t) = \sin(t)
\end{matrix} \right. \]</LaTeX>
<p>Multiple functions, but only one variable. If we change the value for <i>t</i>,
@ -65,8 +65,8 @@ var Explanation = React.createClass({
<LaTeX>\[
\left \{ \begin{matrix}
x = \sin(t) \\
y = \cos(t)
x = \cos(t) \\
y = \sin(t)
\end{matrix} \right. \]</LaTeX>
<p>There we go. <i>x</i>/<i>y</i> coordinates, linked through some mystery value <i>t</i>.</p>