Package com.aspose.threed
Enum VertexElementType
- java.lang.Object
-
- java.lang.Enum<VertexElementType>
-
- com.aspose.threed.VertexElementType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VertexElementType>
public enum VertexElementType extends java.lang.Enum<VertexElementType>
The type of the vertex element, defined how it will be used in modeling.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINORMAL
Binormal vector, seeVertexElementBinormal
EDGE_CREASE
Edge crease,VertexElementEdgeCrease
HOLE
Holes, seeVertexElementHole
MATERIAL
Material index, seeVertexElementMaterial
NORMAL
Normal vector, seeVertexElementNormal
POLYGON_GROUP
Polygon group index, seeVertexElementPolygonGroup
SMOOTHING_GROUP
Smoothing group, SeeVertexElementSmoothingGroup
SPECULAR
Specular colors, seeVertexElementSpecular
TANGENT
Tangent vector, seeVertexElementTangent
USER_DATA
User data, usually for application-specific purpose, SeeVertexElementUserData
UV
Texture UV coordinate, seeVertexElementUV
VERTEX_COLOR
Vertex color, seeVertexElementVertexColor
VERTEX_CREASE
Vertex crease, SeeVertexElementVertexCrease
VISIBILITY
Visibility for components, seeVertexElementVisibility
WEIGHT
Blend weights, seeVertexElementWeight
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
BINORMAL
public static final VertexElementType BINORMAL
Binormal vector, seeVertexElementBinormal
-
NORMAL
public static final VertexElementType NORMAL
Normal vector, seeVertexElementNormal
-
TANGENT
public static final VertexElementType TANGENT
Tangent vector, seeVertexElementTangent
-
MATERIAL
public static final VertexElementType MATERIAL
Material index, seeVertexElementMaterial
-
POLYGON_GROUP
public static final VertexElementType POLYGON_GROUP
Polygon group index, seeVertexElementPolygonGroup
-
UV
public static final VertexElementType UV
Texture UV coordinate, seeVertexElementUV
-
VERTEX_COLOR
public static final VertexElementType VERTEX_COLOR
Vertex color, seeVertexElementVertexColor
-
SMOOTHING_GROUP
public static final VertexElementType SMOOTHING_GROUP
Smoothing group, SeeVertexElementSmoothingGroup
-
VERTEX_CREASE
public static final VertexElementType VERTEX_CREASE
Vertex crease, SeeVertexElementVertexCrease
-
EDGE_CREASE
public static final VertexElementType EDGE_CREASE
Edge crease,VertexElementEdgeCrease
-
USER_DATA
public static final VertexElementType USER_DATA
User data, usually for application-specific purpose, SeeVertexElementUserData
-
VISIBILITY
public static final VertexElementType VISIBILITY
Visibility for components, seeVertexElementVisibility
-
SPECULAR
public static final VertexElementType SPECULAR
Specular colors, seeVertexElementSpecular
-
WEIGHT
public static final VertexElementType WEIGHT
Blend weights, seeVertexElementWeight
-
HOLE
public static final VertexElementType HOLE
Holes, seeVertexElementHole
-
-
Method Detail
-
values
public static VertexElementType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VertexElementType c : VertexElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VertexElementType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-