public static enum SubdivisionMesh.MapBorderMode extends java.lang.Enum<SubdivisionMesh.MapBorderMode>
| Enum Constant and Description |
|---|
NOT_SMOOTH
Jeeps the same uvs for all control points.
|
SMOOTH_ALL
Smooths uvs of points at boundaries and original control points (and creases [in the future when creases are defined]).
|
SMOOTH_INTERNAL
Smooths uvs of points at corners.
|
| Modifier and Type | Method and Description |
|---|---|
static SubdivisionMesh.MapBorderMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubdivisionMesh.MapBorderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubdivisionMesh.MapBorderMode NOT_SMOOTH
public static final SubdivisionMesh.MapBorderMode SMOOTH_INTERNAL
public static final SubdivisionMesh.MapBorderMode SMOOTH_ALL
public static SubdivisionMesh.MapBorderMode[] values()
for (SubdivisionMesh.MapBorderMode c : SubdivisionMesh.MapBorderMode.values()) System.out.println(c);
public static SubdivisionMesh.MapBorderMode 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 namejava.lang.NullPointerException - if the argument is null