[][src]Struct micromath::vector::U8x3

pub struct U8x3 {
    pub x: u8,
    pub y: u8,
    pub z: u8,
}

3-dimensional XYZ vector of u8 values

Fields

x: u8

X component

y: u8

Y component

z: u8

Z component

Methods

impl U8x3[src]

pub fn new(x: u8, y: u8, z: u8) -> Self[src]

Instantiate from X,Y,Z components

Trait Implementations

impl Vector for U8x3[src]

type Component = u8

Type representing measured acceleration for a particular axis

type Axes = U3

Number of axes

impl From<(u8, u8, u8)> for U8x3[src]

impl From<U8x3> for F32x3[src]

impl Debug for U8x3[src]

impl PartialEq<U8x3> for U8x3[src]

impl MulAssign<f32> for U8x3[src]

impl Index<usize> for U8x3[src]

type Output = u8

The returned type after indexing.

impl Copy for U8x3[src]

impl StructuralPartialEq for U8x3[src]

impl Clone for U8x3[src]

impl Default for U8x3[src]

Auto Trait Implementations

impl Unpin for U8x3

impl Send for U8x3

impl Sync for U8x3

Blanket Implementations

impl<V, A, C> VectorExt for V where
    A: ArrayLength<C>,
    C: Component + Into<f32>,
    V: Vector<Axes = A, Component = C> + MulAssign<f32>, 
[src]

fn distance(Self, V) -> f32[src]

Compute the distance between two vectors

fn magnitude(Self) -> f32[src]

Compute the magnitude of a vector

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

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> Into<U> for T where
    U: From<T>, 
[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self