Trait maglio::BoundingBoxTrait[][src]

pub trait BoundingBoxTrait: Sized + Clone + Default + Debug {
    fn partition(&self) -> Option<(Self, Self)>;
fn extend(&self) -> Option<(Self, Self)>;
fn is_contained(&self, other: &Self) -> bool;
fn intersects(&self, other: &Self) -> bool;
fn is_sub_scale(&self, other: &Self) -> bool; }

Required methods

fn partition(&self) -> Option<(Self, Self)>[src]

fn extend(&self) -> Option<(Self, Self)>[src]

fn is_contained(&self, other: &Self) -> bool[src]

fn intersects(&self, other: &Self) -> bool[src]

fn is_sub_scale(&self, other: &Self) -> bool[src]

Loading content...

Implementors

impl BoundingBoxTrait for BoundingBox3d[src]

Loading content...