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

pub fn draw_cubic_bezier_curve_mut<I>(
    image: &mut I,
    start: (f32, f32),
    end: (f32, f32),
    control_a: (f32, f32),
    control_b: (f32, f32),
    color: I::Pixel
) where
    I: GenericImage,
    I::Pixel: 'static, 

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