Struct vmath::vec::Vec3 [] [src]

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

Fields

Methods

impl Vec3
[src]

[src]

Trait Implementations

impl Clone for Vec3
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Vec3
[src]

impl Debug for Vec3
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Vec3
[src]

[src]

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

[src]

This method tests for !=.

impl Add<Vec3> for Vec3
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub<Vec3> for Vec3
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Mul<Vec3> for Vec3
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Div<Vec3> for Vec3
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl Neg for Vec3
[src]

The resulting type after applying the - operator.

[src]

Performs the unary - operation.