public static enum VectorUtil.Winding extends Enum<VectorUtil.Winding>
Modifier and Type | Field and Description |
---|---|
int |
dir |
Modifier and Type | Method and Description |
---|---|
static VectorUtil.Winding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorUtil.Winding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorUtil.Winding CW
public static final VectorUtil.Winding CCW
public static VectorUtil.Winding[] values()
for (VectorUtil.Winding c : VectorUtil.Winding.values()) System.out.println(c);
public static VectorUtil.Winding 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 2010 JogAmp Community.