|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FaceCullMode>
org.jagatoo.opengl.enums.FaceCullMode
public enum FaceCullMode
Insert type comment here.
| Enum Constant Summary | |
|---|---|
BACK
Culls all back-facing polygons |
|
FRONT
Culls all front-facing polygons |
|
NONE
Performs no face culling |
|
SWITCH
The polygon is rendered twice. |
|
| Method Summary | |
|---|---|
int |
toOpenGL()
|
static FaceCullMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FaceCullMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final FaceCullMode NONE
public static final FaceCullMode FRONT
public static final FaceCullMode BACK
public static final FaceCullMode SWITCH
| Method Detail |
|---|
public static FaceCullMode[] values()
for (FaceCullMode c : FaceCullMode.values()) System.out.println(c);
public static FaceCullMode 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 name
java.lang.NullPointerException - if the argument is nullpublic final int toOpenGL()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||