Struct rgeometry::data::LineSegment
source · [−]pub struct LineSegment<T, const N: usize> {
pub min: EndPoint<Point<T, N>>,
pub max: EndPoint<Point<T, N>>,
}
Fields
min: EndPoint<Point<T, N>>
max: EndPoint<Point<T, N>>
Implementations
sourceimpl<T, const N: usize> LineSegment<T, N>
impl<T, const N: usize> LineSegment<T, N>
sourceimpl<T> LineSegment<T, 2>
impl<T> LineSegment<T, 2>
pub fn contains(&self, pt: &Point<T, 2>) -> bool where
T: PolygonScalar,
Trait Implementations
sourceimpl<T: Clone, const N: usize> Clone for LineSegment<T, N>
impl<T: Clone, const N: usize> Clone for LineSegment<T, N>
sourcefn clone(&self) -> LineSegment<T, N>
fn clone(&self) -> LineSegment<T, N>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug, const N: usize> Debug for LineSegment<T, N>
impl<T: Debug, const N: usize> Debug for LineSegment<T, N>
sourceimpl<T: Ord, const N: usize> From<DirectedEdge_<T, N>> for LineSegment<T, N>
impl<T: Ord, const N: usize> From<DirectedEdge_<T, N>> for LineSegment<T, N>
sourcefn from(edge: DirectedEdge_<T, N>) -> LineSegment<T, N>
fn from(edge: DirectedEdge_<T, N>) -> LineSegment<T, N>
Converts to this type from the input type.
sourceimpl<T: Ord, const N: usize> From<Range<Point<T, N>>> for LineSegment<T, N>
impl<T: Ord, const N: usize> From<Range<Point<T, N>>> for LineSegment<T, N>
sourcefn from(range: Range<Point<T, N>>) -> LineSegment<T, N>
fn from(range: Range<Point<T, N>>) -> LineSegment<T, N>
Converts to this type from the input type.
sourceimpl<T: Ord, const N: usize> From<RangeInclusive<Point<T, N>>> for LineSegment<T, N>
impl<T: Ord, const N: usize> From<RangeInclusive<Point<T, N>>> for LineSegment<T, N>
sourcefn from(range: RangeInclusive<Point<T, N>>) -> LineSegment<T, N>
fn from(range: RangeInclusive<Point<T, N>>) -> LineSegment<T, N>
Converts to this type from the input type.
sourceimpl<'a, T> Intersects<&'a LineSegment<T, 2_usize>> for &'a LineSegment<T, 2> where
T: PolygonScalar,
impl<'a, T> Intersects<&'a LineSegment<T, 2_usize>> for &'a LineSegment<T, 2> where
T: PolygonScalar,
type Result = ILineSegment<'a, T>
fn intersect(self, other: &'a LineSegment<T, 2>) -> Option<Self::Result>
impl<T: Copy, const N: usize> Copy for LineSegment<T, N>
Auto Trait Implementations
impl<T, const N: usize> RefUnwindSafe for LineSegment<T, N> where
T: RefUnwindSafe,
impl<T, const N: usize> Send for LineSegment<T, N> where
T: Send,
impl<T, const N: usize> Sync for LineSegment<T, N> where
T: Sync,
impl<T, const N: usize> Unpin for LineSegment<T, N> where
T: Unpin,
impl<T, const N: usize> UnwindSafe for LineSegment<T, N> where
T: 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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more