fn move_to()

in src/ras.rs [274:279]


    fn move_to(&mut self, x: f32, y: f32) {
        self.path.move_to(x, y);
        let mut c = Contour::new();
        c.push_endpoint(Vector2F::new(x, y));
        self.contour = c;
    }