mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-21 16:02:08 +02:00
.
This commit is contained in:
@@ -21911,7 +21911,7 @@
|
|||||||
React.createElement(
|
React.createElement(
|
||||||
LaTeX,
|
LaTeX,
|
||||||
null,
|
null,
|
||||||
"\\[ f(x) = \\sin(x) \\]"
|
"\\[ f(x) = \\cos(x) \\]"
|
||||||
),
|
),
|
||||||
React.createElement(
|
React.createElement(
|
||||||
"p",
|
"p",
|
||||||
@@ -21960,7 +21960,7 @@
|
|||||||
'{',
|
'{',
|
||||||
"matrix",
|
"matrix",
|
||||||
'}',
|
'}',
|
||||||
"f(a) = \\sin(a) \\\\ f(b) = \\cos(b) \\end",
|
"f(a) = \\cos(a) \\\\ f(b) = \\sin(b) \\end",
|
||||||
'{',
|
'{',
|
||||||
"matrix",
|
"matrix",
|
||||||
'}',
|
'}',
|
||||||
@@ -21998,7 +21998,7 @@
|
|||||||
'{',
|
'{',
|
||||||
"matrix",
|
"matrix",
|
||||||
'}',
|
'}',
|
||||||
"f_a(t) = \\sin(t) \\\\ f_b(t) = \\cos(t) \\end",
|
"f_a(t) = \\cos(t) \\\\ f_b(t) = \\sin(t) \\end",
|
||||||
'{',
|
'{',
|
||||||
"matrix",
|
"matrix",
|
||||||
'}',
|
'}',
|
||||||
@@ -22072,7 +22072,7 @@
|
|||||||
'{',
|
'{',
|
||||||
"matrix",
|
"matrix",
|
||||||
'}',
|
'}',
|
||||||
"x = \\sin(t) \\\\ y = \\cos(t) \\end",
|
"x = \\cos(t) \\\\ y = \\sin(t) \\end",
|
||||||
'{',
|
'{',
|
||||||
"matrix",
|
"matrix",
|
||||||
'}',
|
'}',
|
||||||
|
@@ -30,7 +30,7 @@ var Explanation = React.createClass({
|
|||||||
some other value, using some kind of number manipulation:</p>
|
some other value, using some kind of number manipulation:</p>
|
||||||
|
|
||||||
<LaTeX>\[
|
<LaTeX>\[
|
||||||
f(x) = \sin(x)
|
f(x) = \cos(x)
|
||||||
\]</LaTeX>
|
\]</LaTeX>
|
||||||
|
|
||||||
<p>The notation <i>f(x)</i> is the standard way to show that it's a function (by convention
|
<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>
|
Let's take the following two functions:</p>
|
||||||
|
|
||||||
<LaTeX>\[\begin{matrix}
|
<LaTeX>\[\begin{matrix}
|
||||||
f(a) = \sin(a) \\
|
f(a) = \cos(a) \\
|
||||||
f(b) = \cos(b)
|
f(b) = \sin(b)
|
||||||
\end{matrix}\]</LaTeX>
|
\end{matrix}\]</LaTeX>
|
||||||
|
|
||||||
<p>There's nothing really remarkable about them, they're just a sine and cosine function,
|
<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>\[
|
<LaTeX>\[
|
||||||
\left \{ \begin{matrix}
|
\left \{ \begin{matrix}
|
||||||
f_a(t) = \sin(t) \\
|
f_a(t) = \cos(t) \\
|
||||||
f_b(t) = \cos(t)
|
f_b(t) = \sin(t)
|
||||||
\end{matrix} \right. \]</LaTeX>
|
\end{matrix} \right. \]</LaTeX>
|
||||||
|
|
||||||
<p>Multiple functions, but only one variable. If we change the value for <i>t</i>,
|
<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>\[
|
<LaTeX>\[
|
||||||
\left \{ \begin{matrix}
|
\left \{ \begin{matrix}
|
||||||
x = \sin(t) \\
|
x = \cos(t) \\
|
||||||
y = \cos(t)
|
y = \sin(t)
|
||||||
\end{matrix} \right. \]</LaTeX>
|
\end{matrix} \right. \]</LaTeX>
|
||||||
|
|
||||||
<p>There we go. <i>x</i>/<i>y</i> coordinates, linked through some mystery value <i>t</i>.</p>
|
<p>There we go. <i>x</i>/<i>y</i> coordinates, linked through some mystery value <i>t</i>.</p>
|
||||||
|
Reference in New Issue
Block a user