public enum VertexElementType extends java.lang.Enum<VertexElementType>
Enum Constant and Description |
---|
BINORMAL
Binormal vector, see
VertexElementBinormal |
EDGE_CREASE
Edge crease,
VertexElementEdgeCrease |
HOLE
Holes, see
VertexElementHole |
MATERIAL
Material index, see
VertexElementMaterial |
NORMAL
Normal vector, see
VertexElementNormal |
POLYGON_GROUP
Polygon group index, see
VertexElementPolygonGroup |
SMOOTHING_GROUP
Smoothing group, See
VertexElementSmoothingGroup |
SPECULAR
Specular colors, see
VertexElementSpecular |
TANGENT
Tangent vector, see
VertexElementTangent |
USER_DATA
User data, usually for application-specific purpose, See
VertexElementUserData |
UV
Texture UV coordinate, see
VertexElementUV |
VERTEX_COLOR
Vertex color, see
VertexElementVertexColor |
VERTEX_CREASE
Vertex crease, See
VertexElementVertexCrease |
VISIBILITY
Visibility for components, see
VertexElementVisibility |
WEIGHT
Blend weights, see
VertexElementWeight |
Modifier and Type | Method and Description |
---|---|
static VertexElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VertexElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertexElementType BINORMAL
VertexElementBinormal
public static final VertexElementType NORMAL
VertexElementNormal
public static final VertexElementType TANGENT
VertexElementTangent
public static final VertexElementType MATERIAL
VertexElementMaterial
public static final VertexElementType POLYGON_GROUP
VertexElementPolygonGroup
public static final VertexElementType UV
VertexElementUV
public static final VertexElementType VERTEX_COLOR
VertexElementVertexColor
public static final VertexElementType SMOOTHING_GROUP
VertexElementSmoothingGroup
public static final VertexElementType VERTEX_CREASE
VertexElementVertexCrease
public static final VertexElementType EDGE_CREASE
VertexElementEdgeCrease
public static final VertexElementType USER_DATA
VertexElementUserData
public static final VertexElementType VISIBILITY
VertexElementVisibility
public static final VertexElementType SPECULAR
VertexElementSpecular
public static final VertexElementType WEIGHT
VertexElementWeight
public static final VertexElementType HOLE
VertexElementHole
public static VertexElementType[] values()
for (VertexElementType c : VertexElementType.values()) System.out.println(c);
public static VertexElementType 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