fn line_to()

in src/ras.rs [281:284]


    fn line_to(&mut self, x: f32, y: f32) {
        self.contour.push_endpoint(Vector2F::new(x, y));
        self.path.line_to(x, y);
    }