Trait IntersectionPoint

Source
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§

Source

fn intersection_point(&self, line: &Line<T>) -> Coordinate<T>

Implementations on Foreign Types§

Source§

impl<T> IntersectionPoint<T> for Line<T>
where T: Float,

Source§

fn intersection_point(&self, line: &Line<T>) -> Coordinate<T>

Implementors§