pub struct Line<P>where
P: Point,{
pub from: P,
pub to: P,
}
Expand description
A line defined by a start and and end point.
This struct can be inserted directly into an r-tree.
§Type parameters
P
: The line’s Point type.
§Example
use rstar::primitives::Line;
use rstar::{RTree, RTreeObject};
let line_1 = Line::new([0.0, 0.0], [1.0, 1.0]);
let line_2 = Line::new([0.0, 0.0], [-1.0, 1.0]);
let tree = RTree::bulk_load(vec![line_1, line_2]);
assert!(tree.contains(&line_1));
Fields§
§from: P
The line’s start point
to: P
The line’s end point.
Implementations§
Source§impl<P> Line<P>where
P: Point,
impl<P> Line<P>where
P: Point,
Sourcepub fn length_2(&self) -> P::Scalar
pub fn length_2(&self) -> P::Scalar
Returns the squared length of this line.
§Example
use rstar::primitives::Line;
let line = Line::new([3, 3], [7, 6]);
assert_eq!(line.length_2(), 25);
Sourcepub fn nearest_point(&self, query_point: &P) -> P
pub fn nearest_point(&self, query_point: &P) -> P
Returns the nearest point on this line relative to a given point.
§Example
use rstar::primitives::Line;
let line = Line::new([0.0, 0.0], [1., 1.]);
assert_eq!(line.nearest_point(&[0.0, 0.0]), [0.0, 0.0]);
assert_eq!(line.nearest_point(&[1.0, 0.0]), [0.5, 0.5]);
assert_eq!(line.nearest_point(&[10., 12.]), [1.0, 1.0]);
Trait Implementations§
Source§impl<P> Ord for Line<P>
impl<P> Ord for Line<P>
Source§impl<P> PartialOrd for Line<P>where
P: Point + PartialOrd,
impl<P> PartialOrd for Line<P>where
P: Point + PartialOrd,
Source§impl<P> PointDistance for Line<P>where
P: Point,
impl<P> PointDistance for Line<P>where
P: Point,
Source§fn distance_2(
&self,
point: &<Self::Envelope as Envelope>::Point,
) -> <<Self::Envelope as Envelope>::Point as Point>::Scalar
fn distance_2( &self, point: &<Self::Envelope as Envelope>::Point, ) -> <<Self::Envelope as Envelope>::Point as Point>::Scalar
Returns the squared distance between an object and a point. Read more
Source§fn contains_point(&self, point: &<Self::Envelope as Envelope>::Point) -> bool
fn contains_point(&self, point: &<Self::Envelope as Envelope>::Point) -> bool
Returns
true
if a point is contained within this object. Read moreSource§fn distance_2_if_less_or_equal(
&self,
point: &<Self::Envelope as Envelope>::Point,
max_distance_2: <<Self::Envelope as Envelope>::Point as Point>::Scalar,
) -> Option<<<Self::Envelope as Envelope>::Point as Point>::Scalar>
fn distance_2_if_less_or_equal( &self, point: &<Self::Envelope as Envelope>::Point, max_distance_2: <<Self::Envelope as Envelope>::Point as Point>::Scalar, ) -> Option<<<Self::Envelope as Envelope>::Point as Point>::Scalar>
Returns the squared distance to this object, or
None
if the distance
is larger than a given maximum value. Read moreSource§impl<P> RTreeObject for Line<P>where
P: Point,
impl<P> RTreeObject for Line<P>where
P: Point,
impl<P> Copy for Line<P>
impl<P> Eq for Line<P>
impl<P> StructuralPartialEq for Line<P>where
P: Point,
Auto Trait Implementations§
impl<P> Freeze for Line<P>where
P: Freeze,
impl<P> RefUnwindSafe for Line<P>where
P: RefUnwindSafe,
impl<P> Send for Line<P>where
P: Send,
impl<P> Sync for Line<P>where
P: Sync,
impl<P> Unpin for Line<P>where
P: Unpin,
impl<P> UnwindSafe for Line<P>where
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more