public enum BooleanOperation extends java.lang.Enum<BooleanOperation>
| Enum Constant and Description |
|---|
ADD
Add two meshes and calculate the union of the inputs.
|
INTERSECT
Calculate the intersection of two meshes.
|
SUB
Subtract one mesh from another mesh, calculate the difference of the inputs.
|
| Modifier and Type | Method and Description |
|---|---|
static BooleanOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BooleanOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanOperation ADD
public static final BooleanOperation SUB
public static final BooleanOperation INTERSECT
public static BooleanOperation[] values()
for (BooleanOperation c : BooleanOperation.values()) System.out.println(c);
public static BooleanOperation 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