pub trait Detail_PlaneProjectorTrait: Detail_PlaneProjectorTraitConst + Detail_ProjectorBaseTrait {
    // Required method
    fn as_raw_mut_Detail_PlaneProjector(&mut self) -> *mut c_void;

    // Provided methods
    fn map_forward(
        &mut self,
        x: f32,
        y: f32,
        u: &mut f32,
        v: &mut f32
    ) -> Result<()> { ... }
    fn map_backward(
        &mut self,
        u: f32,
        v: f32,
        x: &mut f32,
        y: &mut f32
    ) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn map_forward( &mut self, x: f32, y: f32, u: &mut f32, v: &mut f32 ) -> Result<()>

source

fn map_backward( &mut self, u: f32, v: f32, x: &mut f32, y: &mut f32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§