Enum matmath::special_matrices::rotation::RotmatElement[][src]

pub enum RotmatElement {
    Sin,
    Cos,
    NegSin,
    One,
    Zero,
    Multiply(Vec<RotmatElement>),
    Add(Vec<RotmatElement>),
}

This is a Placeholder that takes on a value once you need it to (using its insert_value(...) method)

Variants

Trait Implementations

impl Debug for RotmatElement
[src]

Formats the value using the given formatter. Read more

impl Clone for RotmatElement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl MatrixElement for RotmatElement
[src]

impl Display for RotmatElement
[src]

Formats the value using the given formatter. Read more

impl Mul for RotmatElement
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Add for RotmatElement
[src]

The resulting type after applying the + operator.

Performs the + operation.

Auto Trait Implementations