public static enum SubdivisionMesh.BoundaryMode extends java.lang.Enum<SubdivisionMesh.BoundaryMode>
| Enum Constant and Description |
|---|
CREASE_ALL
Edges and points at the boundary are treated as creases.
|
CREASE_EDGES
Only edges at the boundary are treated as creases.
|
| Modifier and Type | Method and Description |
|---|---|
static SubdivisionMesh.BoundaryMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubdivisionMesh.BoundaryMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubdivisionMesh.BoundaryMode CREASE_EDGES
public static final SubdivisionMesh.BoundaryMode CREASE_ALL
public static SubdivisionMesh.BoundaryMode[] values()
for (SubdivisionMesh.BoundaryMode c : SubdivisionMesh.BoundaryMode.values()) System.out.println(c);
public static SubdivisionMesh.BoundaryMode 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