public enum Semantic extends java.lang.Enum<Semantic>
technique
parameters semantics| Enum Constant and Description |
|---|
JOINTMATRIX
The JOINTMATRIX semantic
|
LOCAL
The LOCAL semantic
|
MODEL
The MODEL semantic
|
MODELINVERSE
The MODELINVERSE semantic
|
MODELINVERSETRANSPOSE
The MODELINVERSETRANSPOSE semantic
|
MODELVIEW
The MODELVIEW semantic
|
MODELVIEWINVERSE
The MODELVIEWINVERSE semantic
|
MODELVIEWINVERSETRANSPOSE
The MODELVIEWINVERSETRANSPOSE semantic
|
MODELVIEWPROJECTION
The MODELVIEWPROJECTION semantic
|
MODELVIEWPROJECTIONINVERSE
The MODELVIEWPROJECTIONINVERSE semantic
|
PROJECTION
The PROJECTION semantic
|
PROJECTIONINVERSE
The PROJECTIONINVERSE semantic
|
VIEW
The VIEW semantic
|
VIEWINVERSE
The VIEWINVERSE semantic
|
VIEWPORT
The VIEWPORT semantic
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
contains(java.lang.String s)
Returns whether the given string is a valid semantic name, and may be
passed to
Semantic.valueOf without causing an exception. |
static Semantic |
forString(java.lang.String string)
Returns the semantic for the given string.
|
static Semantic |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Semantic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Semantic LOCAL
public static final Semantic MODEL
public static final Semantic VIEW
public static final Semantic PROJECTION
public static final Semantic MODELVIEW
public static final Semantic MODELVIEWPROJECTION
public static final Semantic MODELINVERSE
public static final Semantic VIEWINVERSE
public static final Semantic MODELVIEWINVERSE
public static final Semantic PROJECTIONINVERSE
public static final Semantic MODELVIEWPROJECTIONINVERSE
public static final Semantic MODELINVERSETRANSPOSE
public static final Semantic MODELVIEWINVERSETRANSPOSE
public static final Semantic VIEWPORT
public static final Semantic JOINTMATRIX
public static Semantic[] values()
for (Semantic c : Semantic.values()) System.out.println(c);
public static Semantic 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 nullpublic static boolean contains(java.lang.String s)
Semantic.valueOf without causing an exception.s - The stringpublic static Semantic forString(java.lang.String string)
null or does not describe a valid semantic,
then null is returnedstring - The stringCopyright © 2022. All Rights Reserved.