public enum JCGLFaceWindingOrder extends Enum<JCGLFaceWindingOrder>
| Enum Constant and Description |
|---|
FRONT_FACE_CLOCKWISE
Front faces have a clockwise winding order;
GL_CW |
FRONT_FACE_COUNTER_CLOCKWISE
Front faces have a clockwise winding order;
GL_CCW |
| Modifier and Type | Method and Description |
|---|---|
static JCGLFaceWindingOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLFaceWindingOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLFaceWindingOrder FRONT_FACE_CLOCKWISE
GL_CWpublic static final JCGLFaceWindingOrder FRONT_FACE_COUNTER_CLOCKWISE
GL_CCWpublic static JCGLFaceWindingOrder[] values()
for (JCGLFaceWindingOrder c : JCGLFaceWindingOrder.values()) System.out.println(c);
public static JCGLFaceWindingOrder valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 <code@io7m.com> http://io7m.com