|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<VertexElementUsage>
Microsoft.Xna.Framework.Graphics.VertexElementUsage
public enum VertexElementUsage
Defines usage for vertex elements.
Enum Constant Summary | |
---|---|
Binormal
Vertex binormal data. |
|
BlendIndices
Blending indices data. |
|
BlendWeight
Blending weight data. |
|
Color
Vertex data contains diffuse or specular color. |
|
Depth
Vertex data contains depth data. |
|
Fog
Vertex data contains fog data. |
|
Normal
Vertex normal data. |
|
PointSize
Point size data. |
|
Position
Position data. |
|
Sample
Vertex data contains sampler data. |
|
Tangent
Vertex tangent data. |
|
TessellateFactor
Single, positive floating-point value. |
|
TextureCoordinate
Texture coordinate data. |
Method Summary | |
---|---|
static VertexElementUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static VertexElementUsage[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final VertexElementUsage Position
public static final VertexElementUsage Color
public static final VertexElementUsage TextureCoordinate
public static final VertexElementUsage Normal
public static final VertexElementUsage Binormal
public static final VertexElementUsage Tangent
public static final VertexElementUsage BlendIndices
public static final VertexElementUsage BlendWeight
public static final VertexElementUsage Depth
public static final VertexElementUsage Fog
public static final VertexElementUsage PointSize
public static final VertexElementUsage Sample
public static final VertexElementUsage TessellateFactor
Method Detail |
---|
public static VertexElementUsage[] values()
for (VertexElementUsage c : VertexElementUsage.values()) System.out.println(c);
public static VertexElementUsage 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |