1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-09 08:00:41 +02:00

finally explained how to lower the curve order

This commit is contained in:
Pomax
2018-07-20 19:37:49 -07:00
parent b2a26b4fef
commit e3255abb56
23 changed files with 75881 additions and 37 deletions

View File

@@ -0,0 +1,17 @@
# Drawing Bezier paths
- draw with a mouse, stylus, or finger
- RDP to reduce the number of points along the path
- abstract curve through points:
- high order bezier, split and reduced
- fit compound bezier
- catmull-rom
<div className="figure">
<Graphic title="Fitting a Bézier curve" setup={this.setup} draw={this.draw} onClick={this.onClick}>
<button onClick={this.toggle}>toggle</button>
<button onClick={this.reset}>reset</button>
<SliderSet ref={ set => (this.sliders=set) } onChange={this.processTimeUpdate} />
</Graphic>
</div>