Enum opengex::structure::Translation [] [src]

pub enum Translation {
    X(f32),
    Y(f32),
    Z(f32),
    Xyz(f32f32f32),
}

The Translation structure holds a translation transformation in one of several possible variants.

There are different variants of this type of tranformation, one for each "kind".

When contained inside a node structure, a Translation structure can be the target of a track stored inside an Animation structure.

Variants

The translation occurs along only the X axis.

The translation occurs along only the Y axis.

The translation occurs along only the Z axis.

The translation occurs along all three coordinate axes.