public static enum ColAsset.UpAxis extends java.lang.Enum<ColAsset.UpAxis>
X_UP, Y_UP, and Z_UP specify which axis is
considered upward, which is considered to the right,
and which is considered inward.
| Enum Constant and Description |
|---|
X_UP
Upward axis: positive x, right axis: negative y, inward axis: positive z.
|
Y_UP
Upward axis: positive y, right axis: positive x, inward axis: positive z.
|
Z_UP
Upward axis: positive z, right axis: positive x, inward axis: negative y.
|
| Modifier and Type | Method and Description |
|---|---|
static ColAsset.UpAxis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColAsset.UpAxis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColAsset.UpAxis X_UP
public static final ColAsset.UpAxis Y_UP
public static final ColAsset.UpAxis Z_UP
public static ColAsset.UpAxis[] values()
for (ColAsset.UpAxis c : ColAsset.UpAxis.values()) System.out.println(c);
public static ColAsset.UpAxis valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright (C) 2013-2014 InteractiveMesh e.K.