[][src]Function imageproc::drawing::draw_cubic_bezier_curve_mut

pub fn draw_cubic_bezier_curve_mut<C>(
    canvas: &mut C,
    start: (f32, f32),
    end: (f32, f32),
    control_a: (f32, f32),
    control_b: (f32, f32),
    color: C::Pixel
) where
    C: Canvas,
    C::Pixel: 'static, 

Draws as much of a cubic bezier curve as lies within image bounds.