Type Definition fenris_geometry::LineSegment3d

source ·
pub type LineSegment3d<T> = LineSegment<T, U3>;

Implementations§

source§

impl<T: Real> LineSegment3d<T>

source

pub fn closest_point_to_plane_parametric(&self, plane: &Plane<T>) -> T

source

pub fn closest_point_to_plane(&self, plane: &Plane<T>) -> Point3<T>

source§

impl<T: Real> LineSegment3d<T>

source

pub fn intersect_plane_parametric(&self, plane: &Plane<T>) -> Option<T>