Trait collision::Continuous [] [src]

pub trait Continuous<RHS> {
    type Result;
    fn intersection(&self, _: &RHS) -> Option<Self::Result>;
}

An intersection test with a result.

An example would be a Ray vs AABB intersection test that returns a Point in space.

Associated Types

Result returned by the intersection test

Required Methods

Intersection test

Implementors