pub trait IInkPointFactory_Impl: Sized {
    // Required method
    fn CreateInkPoint(
        &self,
        position: &Point,
        pressure: f32
    ) -> Result<InkPoint>;
}

Required Methods§

fn CreateInkPoint(&self, position: &Point, pressure: f32) -> Result<InkPoint>

Object Safety§

This trait is not object safe.

Implementors§