pub trait DiscreteTransformed<RHS> {
type Point: EuclideanSpace;
// Required method
fn intersects_transformed<T>(&self, _: &RHS, _: &T) -> bool
where T: Transform<Self::Point>;
}Expand description
Discrete intersection test on transformed primitive
Required Associated Types§
Sourcetype Point: EuclideanSpace
type Point: EuclideanSpace
Point type for transformation of self
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".