|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Texture.CombinerFunctionRGB>
com.jme.image.Texture.CombinerFunctionRGB
public static enum Texture.CombinerFunctionRGB
Enum Constant Summary | |
---|---|
Add
Arg0 + Arg1 |
|
AddSigned
Arg0 + Arg1 - 0.5 |
|
Dot3RGB
4 * ((Arg0r - 0.5) * (Arg1r - 0.5) + (Arg0g - 0.5) * (Arg1g - 0.5) + (Arg0b - 0.5) * (Arg1b - 0.5)) [ result placed in R,G,B ] |
|
Dot3RGBA
4 * ((Arg0r - 0.5) * (Arg1r - 0.5) + (Arg0g - 0.5) * (Arg1g - 0.5) + (Arg0b - 0.5) * (Arg1b - 0.5)) [ result placed in R,G,B,A ] |
|
Interpolate
Arg0 * Arg2 + Arg1 * (1 - Arg2) |
|
Modulate
Arg0 * Arg1 |
|
Replace
Arg0 |
|
Subtract
Arg0 - Arg1 |
Method Summary | |
---|---|
static Texture.CombinerFunctionRGB |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Texture.CombinerFunctionRGB[] |
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 Texture.CombinerFunctionRGB Replace
public static final Texture.CombinerFunctionRGB Modulate
public static final Texture.CombinerFunctionRGB Add
public static final Texture.CombinerFunctionRGB AddSigned
public static final Texture.CombinerFunctionRGB Interpolate
public static final Texture.CombinerFunctionRGB Subtract
public static final Texture.CombinerFunctionRGB Dot3RGB
public static final Texture.CombinerFunctionRGB Dot3RGBA
Method Detail |
---|
public static Texture.CombinerFunctionRGB[] values()
for (Texture.CombinerFunctionRGB c : Texture.CombinerFunctionRGB.values()) System.out.println(c);
public static Texture.CombinerFunctionRGB 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |