Struct spectra::transform::Transform [] [src]

pub struct Transform(_);

A transform matrix, used to represent transformations of objects in space.

Trait Implementations

impl Clone for Transform
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Transform
[src]

impl Debug for Transform
[src]

Formats the value using the given formatter.

impl PartialEq for Transform
[src]

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

This method tests for !=.

impl From<M44<f32>> for Transform
[src]

Performs the conversion.

impl From<[[f32; 4]; 4]> for Transform
[src]

Performs the conversion.

impl Transformable for Transform
[src]