1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-17 14:10:56 +02:00

distance -> ratio

In the previous paragraph, "distance" is used in a different meaning.
This commit is contained in:
Masaya Nakamura
2017-02-08 23:05:59 +09:00
committed by GitHub
parent f38e47d233
commit 2f603f100f

View File

@@ -145,10 +145,10 @@ var Whatis = React.createClass({
\]</p>
<p>So let's look at that in action: the following graphic is interactive in that you can use your
up and down arrow keys to increase or decrease the interpolation distance, to see what happens. We start
up and down arrow keys to increase or decrease the interpolation ratio, to see what happens. We start
with three points, which gives us two lines. Linear interpolation over those lines gives use two
points, between which we can again perform linear interpolation, yielding a single point. And that
point —and all points we can form in this way for all distances taken together— form our Bézier curve:</p>
point —and all points we can form in this way for all ratios taken together— form our Bézier curve:</p>
<Graphic title="Linear Interpolation leading to Bézier curves" setup={this.setup} draw={this.draw} onKeyDown={this.onKeyDown}/>