Enum opengex::structure::Scale [] [src]

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

The Scale structure represents a scale 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 Scale structure can be the target of a strack stored inside an Animation structure.

Variants

The scaling occurs along only the X axis.

The scaling occurs along only the Y axis.

The scaling occurs along only the Z axis.

The scaling occurs along all three coordinate axes.