pub fn bezier_curve<N: Real>(
    control_points: &[Point<N>],
    nsubdivs: usize
) -> Vec<Point<N>>
Expand description

Given a set of control points, generates a (non-rational) Bezier curve.