Package com.aspose.threed
Enum WrapMode
- java.lang.Object
-
- java.lang.Enum<WrapMode>
-
- com.aspose.threed.WrapMode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BORDER
The coordinates that outside of the range [0.0, 1.0] are set to a specified border color.CLAMP
Clamps the texture to the last pixel at the border.MIRROR
The texture will be repeated, but it will be mirrored when the integer part of the coordinate is odd.MIRROR_ONCE
The texture will be mirrored once, and then clamps to the maximum value.WRAP
Tiles the texture on the model's surface, creating a repeating pattern.
-
-
-
Enum Constant Detail
-
WRAP
public static final WrapMode WRAP
Tiles the texture on the model's surface, creating a repeating pattern.
-
CLAMP
public static final WrapMode CLAMP
Clamps the texture to the last pixel at the border.
-
MIRROR
public static final WrapMode MIRROR
The texture will be repeated, but it will be mirrored when the integer part of the coordinate is odd.
-
MIRROR_ONCE
public static final WrapMode MIRROR_ONCE
The texture will be mirrored once, and then clamps to the maximum value.
-
BORDER
public static final WrapMode BORDER
The coordinates that outside of the range [0.0, 1.0] are set to a specified border color.
-
-
Method Detail
-
values
public static WrapMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WrapMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-