[][src]Trait mupdf::path::PathWalker

pub trait PathWalker {
    pub fn move_to(&mut self, x: f32, y: f32);
pub fn line_to(&mut self, x: f32, y: f32);
pub fn curve_to(
        &mut self,
        cx1: f32,
        cy1: f32,
        cx2: f32,
        cy2: f32,
        ex: f32,
        ey: f32
    );
pub fn close(&mut self); }

Required methods

pub fn move_to(&mut self, x: f32, y: f32)[src]

pub fn line_to(&mut self, x: f32, y: f32)[src]

pub fn curve_to(
    &mut self,
    cx1: f32,
    cy1: f32,
    cx2: f32,
    cy2: f32,
    ex: f32,
    ey: f32
)
[src]

pub fn close(&mut self)[src]

Loading content...

Implementors

Loading content...