1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-01-18 22:18:00 +01:00
This commit is contained in:
Pomax 2016-09-14 14:58:10 -07:00
parent b9e1d711fd
commit 4eaceef20f
2 changed files with 10 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -57,7 +57,9 @@ var BoundingBox = React.createClass({
such that at any point along the curve except for our start and end points, our on-curve
coordinate is defined by four control points.</p>
<BSplineGraphic sketch={require('./interpolation-graph')} />
{
// <BSplineGraphic sketch={require('./interpolation-graph')} />
}
<p>Consider the difference to be this:</p>
@ -100,7 +102,9 @@ var BoundingBox = React.createClass({
1</code> knots, defining <code>d + n</code> intervals along the curve, and it is these intervals that
the above <code>k</code> subscript to the N() function applies to.</p>
<p>SHOW KNOTS ON THE INTERPOLATION GRAPH HERE</p>
{
// <p>SHOW KNOTS ON THE INTERPOLATION GRAPH HERE</p>
}
<p>Then the N() function itself. What does it look like?</p>