[][src]Struct vivaldi::Coordinate

pub struct Coordinate<V> where
    V: Vector
{ /* fields omitted */ }

Coordinate represents a point in the Vivaldi model.

A Coordinate contains the Euclidean coordinate, estimated position error and current height above the Euclidean plane.

Methods

impl<V> Coordinate<V> where
    V: Vector
[src]

pub fn error(&self) -> f64[src]

Returns the current estimated position error.

pub fn vector(&self) -> &V[src]

Returns the Euclidean coordinate.

pub fn height(&self) -> f64[src]

Returns the height of the Coordinate above the Euclidean plane.

Trait Implementations

impl<V: Clone> Clone for Coordinate<V> where
    V: Vector
[src]

impl<V: Copy> Copy for Coordinate<V> where
    V: Vector
[src]

impl<V: Debug> Debug for Coordinate<V> where
    V: Vector
[src]

impl<V: Default> Default for Coordinate<V> where
    V: Vector
[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for Coordinate<V> where
    V: RefUnwindSafe

impl<V> Send for Coordinate<V> where
    V: Send

impl<V> Sync for Coordinate<V> where
    V: Sync

impl<V> Unpin for Coordinate<V> where
    V: Unpin

impl<V> UnwindSafe for Coordinate<V> where
    V: UnwindSafe

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,