[][src]Struct rust_3d::LineSegment3D

pub struct LineSegment3D {
    pub start: Point3D,
    pub end: Point3D,
}

LineSegment3D, a line segment within 3D space

Fields

start: Point3Dend: Point3D

Implementations

impl LineSegment3D[src]

pub fn new(start: Point3D, end: Point3D) -> Self[src]

Creates a new LineSegment3D from a start and end point

Trait Implementations

impl Clone for LineSegment3D[src]

impl Debug for LineSegment3D[src]

impl Display for LineSegment3D[src]

impl Eq for LineSegment3D[src]

impl HasBoundingBox3DMaybe for LineSegment3D[src]

impl HasCenterOfGravity3D for LineSegment3D[src]

impl HasLength for LineSegment3D[src]

impl Hash for LineSegment3D[src]

impl IsMatrix4Transformable for LineSegment3D[src]

impl IsMovable3D for LineSegment3D[src]

impl IsScalable for LineSegment3D[src]

impl PartialEq<LineSegment3D> for LineSegment3D[src]

impl PartialOrd<LineSegment3D> for LineSegment3D[src]

impl StructuralEq for LineSegment3D[src]

impl StructuralPartialEq for LineSegment3D[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.