Struct rfmod::Vector [] [src]

pub struct Vector {
    pub x: f32,
    pub y: f32,
    pub z: f32,
}

Structure describing a point in 3D space.

Fields

X co-ordinate in 3D space.

Y co-ordinate in 3D space.

Z co-ordinate in 3D space.

Methods

impl Vector
[src]

[src]

Trait Implementations

impl Debug for Vector
[src]

[src]

Formats the value using the given formatter.

impl Clone for Vector
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Vector
[src]

impl Default for Vector
[src]

[src]

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

impl PartialEq for Vector
[src]

[src]

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

[src]

This method tests for !=.