1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-30 11:40:27 +02:00
This commit is contained in:
Pomax
2018-06-24 14:09:27 -07:00
parent 4b2af857ae
commit eb42393f14
11 changed files with 11 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ The following graphs show the interpolation functions for quadratic and cubic cu
<div className="figure">
<Graphic inline={true} title="Quadratic interpolations" draw={this.drawQuadraticLerp}/>
<Graphic inline={true} title="Cubic interpolations" draw={this.drawCubicLerp}/>
<Graphic inline={true} title="15th order interpolations" draw={this.draw15thLerp}/>
<Graphic inline={true} title="15th degree interpolations" draw={this.draw15thLerp}/>
</div>
Also shown is the interpolation function for a 15<sup>th</sup> order Bézier function. As you can see, the start and end point contribute considerably more to the curve's shape than any other point in the control point set.