public static enum SurfaceMeshIntersector.CSG extends java.lang.Enum<SurfaceMeshIntersector.CSG>
mesh0
and mesh1
.Enum Constant and Description |
---|
DIFFERENCE01
Difference operation defined by mesh0 - mesh1.
|
DIFFERENCE10
Difference operation defined by mesh1 - mesh0.
|
INTERSECTION
Intersection between the meshes.
|
MESH0_INSIDE
Portion of mesh0 that is inside the intersection.
|
MESH0_OUTSIDE
Portion of mesh0 that is outside the intersection.
|
MESH1_INSIDE
Portion of mesh1 that is inside the intersection.
|
MESH1_OUTSIDE
Portion of mesh1 that is outside the intersection.
|
NONE
No operation
|
UNION
Union between the meshes.
|
Modifier and Type | Method and Description |
---|---|
static SurfaceMeshIntersector.CSG |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SurfaceMeshIntersector.CSG[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SurfaceMeshIntersector.CSG INTERSECTION
public static final SurfaceMeshIntersector.CSG UNION
public static final SurfaceMeshIntersector.CSG DIFFERENCE01
public static final SurfaceMeshIntersector.CSG DIFFERENCE10
public static final SurfaceMeshIntersector.CSG MESH0_INSIDE
public static final SurfaceMeshIntersector.CSG MESH0_OUTSIDE
public static final SurfaceMeshIntersector.CSG MESH1_INSIDE
public static final SurfaceMeshIntersector.CSG MESH1_OUTSIDE
public static final SurfaceMeshIntersector.CSG NONE
public static SurfaceMeshIntersector.CSG[] values()
for (SurfaceMeshIntersector.CSG c : SurfaceMeshIntersector.CSG.values()) System.out.println(c);
public static SurfaceMeshIntersector.CSG 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