[][src]Trait zvxryb_broadphase::SystemBounds

pub trait SystemBounds<PointGlobal, PointLocal> {
    fn to_local(&self, global: Bounds<PointGlobal>) -> Bounds<PointLocal>;
fn to_global(&self, local: Bounds<PointLocal>) -> Bounds<PointGlobal>; }

System bounds supporting conversions between local and global coordinates

Required methods

fn to_local(&self, global: Bounds<PointGlobal>) -> Bounds<PointLocal>

fn to_global(&self, local: Bounds<PointLocal>) -> Bounds<PointGlobal>

Loading content...

Implementors

impl<PointGlobal, PointLocal> SystemBounds<PointGlobal, PointLocal> for Bounds<PointGlobal> where
    PointGlobal: EuclideanSpace<Scalar = f32>,
    PointGlobal::Diff: Array<Element = f32>,
    PointLocal: EuclideanSpace<Scalar = u32>,
    PointLocal::Diff: Array<Element = u32>, 
[src]

Loading content...