Trait collision::ContinuousTransformed [] [src]

pub trait ContinuousTransformed<RHS> {
    type Point: EuclideanSpace;
    type Result: EuclideanSpace;
    fn intersection_transformed<T>(
        &self,
        _: &RHS,
        _: &T
    ) -> Option<Self::Result>
    where
        T: Transform<Self::Point>
; }

Continuous intersection test on transformed primitive

Associated Types

Point type for transformation of self

Result of intersection test

Required Methods

Intersection test for transformed self

Implementors