package bezier
import "gonum.org/v1/plot/tools/bezier"
Package bezier implements 2D Bézier curve calculation.
Index ¶
Types ¶
type Curve ¶
type Curve []point
Curve implements Bezier curve calculation according to the algorithm of Robert D. Miller.
Graphics Gems 5, 'Quick and Simple Bézier Curve Drawing', pages 206-209.
func New ¶
NewCurve returns a Curve initialized with the control points in cp.
func (Curve) Curve ¶
Curve returns a slice of vg.Point, p, filled with points along the Bézier curve described by c. If the length of p is less than 2, the curve points are undefined. The length of p is not altered by the call.
func (Curve) Point ¶
Point returns the point at t along the curve, where 0 ≤ t ≤ 1.
Source Files ¶
bezier.go
- Version
- v0.15.0 (latest)
- Published
- Oct 22, 2024
- Platform
- linux/amd64
- Imports
- 1 packages
- Last checked
- 2 weeks ago –
Tools for package owners.