pub trait IPointerPointTransform_Impl: Sized {
    // Required methods
    fn Inverse(&self) -> Result<IPointerPointTransform>;
    fn TryTransform(
        &self,
        inpoint: &Point,
        outpoint: &mut Point
    ) -> Result<bool>;
    fn TransformBounds(&self, rect: &Rect) -> Result<Rect>;
}

Required Methods§

fn Inverse(&self) -> Result<IPointerPointTransform>

fn TryTransform(&self, inpoint: &Point, outpoint: &mut Point) -> Result<bool>

fn TransformBounds(&self, rect: &Rect) -> Result<Rect>

Object Safety§

This trait is not object safe.

Implementors§