fn quad_to()

in src/ras.rs [286:290]


    fn quad_to(&mut self, x1: f32, y1: f32, x: f32, y: f32) {
        self.contour
            .push_quadratic(Vector2F::new(x1, y1), Vector2F::new(x, y));
        self.path.quad_to(x1, y1, x, y);
    }