[][src]Struct polyhorn_ios::linalg::Point3D

pub struct Point3D<T> {
    pub x: T,
    pub y: T,
    pub z: T,
}

A point in a 3D space.

Fields

x: T

The x-coordinate of this point.

y: T

The y-coordinate of this point.

z: T

The z-coordinate of this point.

Implementations

impl<T> Point3D<T>[src]

pub fn new(x: T, y: T, z: T) -> Point3D<T>[src]

Returns a new point in a 3D space with the given coordinates.

impl<T> Point3D<T> where
    T: Float
[src]

pub fn l2_norm(self) -> T[src]

Returns the L2 norm of this vector (note to MLs: incl. the square root).

pub fn normalize(self) -> Point3D<T>[src]

Returns a normalized vector by dividing each component by the L2 norm of this vector.

Trait Implementations

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

impl<T> Copy for Point3D<T> where
    T: Copy
[src]

impl<T> Debug for Point3D<T> where
    T: Debug
[src]

impl<T> Default for Point3D<T> where
    T: Default
[src]

impl<T> Eq for Point3D<T> where
    T: Eq
[src]

impl<T> PartialEq<Point3D<T>> for Point3D<T> where
    T: PartialEq<T>, 
[src]

impl<T> StructuralEq for Point3D<T>[src]

impl<T> StructuralPartialEq for Point3D<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Point3D<T> where
    T: RefUnwindSafe

impl<T> Send for Point3D<T> where
    T: Send

impl<T> Sync for Point3D<T> where
    T: Sync

impl<T> Unpin for Point3D<T> where
    T: Unpin

impl<T> UnwindSafe for Point3D<T> where
    T: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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

impl<T> AsAny for T where
    T: Any
[src]

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

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

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

impl<T> IsDefault for T where
    T: PartialEq<T> + Default + Copy
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.