pub trait IntersectionPoint<T>where
T: Float,{
// Required method
fn intersection_point(&self, line: &Line<T>) -> Coordinate<T>;
}Expand description
Returns the coordinate at which two geometries intersect
Required Methods§
fn intersection_point(&self, line: &Line<T>) -> Coordinate<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".