[][src]Trait mini_collide::Intersection

pub trait Intersection<Rhs> {
    fn intersects(&self, rhs: &Rhs) -> bool;
}

Trait for determining whether two shapes intersect with one another.

Required methods

fn intersects(&self, rhs: &Rhs) -> bool

Whether this shape intersect with the other.

Loading content...

Implementors

impl Intersection<Plane> for Ray[src]

impl Intersection<Plane> for Sphere[src]

impl Intersection<Ray> for Plane[src]

impl Intersection<Ray> for Sphere[src]

impl Intersection<Sphere> for Plane[src]

impl Intersection<Sphere> for Ray[src]

impl Intersection<Sphere> for Sphere[src]

impl Intersection<Sphere> for Triangle[src]

impl Intersection<Triangle> for Sphere[src]

Loading content...