[][src]Trait rust_3d::IsSATObject

pub trait IsSATObject {
    fn for_each_point<F>(&self, f: &mut F)
    where
        F: FnMut(&Point3D)
;
fn for_each_axis<F>(&self, f: &mut F)
    where
        F: FnMut(&Norm3D)
; }

IsSATObject is a trait used for objects that can be used for SAT collision checks

Required methods

fn for_each_point<F>(&self, f: &mut F) where
    F: FnMut(&Point3D), 

fn for_each_axis<F>(&self, f: &mut F) where
    F: FnMut(&Norm3D), 

Loading content...

Implementors

impl IsSATObject for BoundingBox3D[src]

impl IsSATObject for BoxUnaligned3D[src]

impl IsSATObject for TriFace3D[src]

Loading content...