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
VertexElementBinormalpublic static final VertexElementType NORMAL
VertexElementNormalpublic static final VertexElementType TANGENT
VertexElementTangentpublic static final VertexElementType MATERIAL
VertexElementMaterialpublic static final VertexElementType POLYGON_GROUP
VertexElementPolygonGrouppublic static final VertexElementType UV
VertexElementUVpublic static final VertexElementType VERTEX_COLOR
VertexElementVertexColorpublic static final VertexElementType SMOOTHING_GROUP
VertexElementSmoothingGrouppublic static final VertexElementType VERTEX_CREASE
VertexElementVertexCreasepublic static final VertexElementType EDGE_CREASE
VertexElementEdgeCreasepublic static final VertexElementType USER_DATA
VertexElementUserDatapublic static final VertexElementType VISIBILITY
VertexElementVisibilitypublic static final VertexElementType SPECULAR
VertexElementSpecularpublic static final VertexElementType WEIGHT
VertexElementWeightpublic static final VertexElementType HOLE
VertexElementHolepublic 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