Struct las::Vector [] [src]

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

An xyz collection.

Fields

X

Y

Z

Trait Implementations

impl<T: Clone> Clone for Vector<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for Vector<T>
[src]

impl<T: Debug> Debug for Vector<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Default> Default for Vector<T>
[src]

[src]

Returns the "default value" for a type. Read more

impl<T: PartialEq> PartialEq for Vector<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.