Struct rstar::primitives::Line
source · [−]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: PThe line’s start point
to: PThe line’s end point.
Implementations
sourceimpl<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
sourceimpl<P: Ord> Ord for Line<P> where
P: Point,
impl<P: Ord> Ord for Line<P> where
P: Point,
sourceimpl<P: PartialOrd> PartialOrd<Line<P>> for Line<P> where
P: Point,
impl<P: PartialOrd> PartialOrd<Line<P>> for Line<P> where
P: Point,
sourcefn partial_cmp(&self, other: &Line<P>) -> Option<Ordering>
fn partial_cmp(&self, other: &Line<P>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl<P> PointDistance for Line<P> where
P: Point,
impl<P> PointDistance for Line<P> where
P: Point,
sourcefn 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 euclidean distance between an object to a point.
sourcefn 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 more
sourcefn 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 more
sourceimpl<P> RTreeObject for Line<P> where
P: Point,
impl<P> RTreeObject for Line<P> where
P: Point,
impl<P: Copy> Copy for Line<P> where
P: Point,
impl<P: Eq> Eq for Line<P> where
P: Point,
impl<P> StructuralEq for Line<P> where
P: Point,
impl<P> StructuralPartialEq for Line<P> where
P: Point,
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more