Table of Contents

Struct VertexPositionColor

Namespace
Microsoft.Xna.Framework.Graphics
Assembly
MonoGame.Framework.dll

Describes a custom vertex format structure that contains position and color.

[DataContract]
public struct VertexPositionColor : IVertexType
Implements
Inherited Members

Constructors

VertexPositionColor(Vector3, Color)

Creates an instance of VertexPositionColor.

public VertexPositionColor(Vector3 position, Color color)

Parameters

position Vector3

Position of the vertex.

color Color

Color of the vertex.

Fields

Color

The vertex color.

[DataMember]
public Color Color

Field Value

Color

Position

The XYZ vertex position.

[DataMember]
public Vector3 Position

Field Value

Vector3

VertexDeclaration

Vertex declaration, which defines per-vertex data.

public static readonly VertexDeclaration VertexDeclaration

Field Value

VertexDeclaration

Methods

Equals(object)

Compares an object with the vertex.

public override bool Equals(object obj)

Parameters

obj object

The object to compare.

Returns

bool

true if the object is equal to the current vertex; false otherwise.

GetHashCode()

Returns the hash code for this instance.

public override int GetHashCode()

Returns

int

A 32-bit signed integer that is the hash code for this instance.

ToString()

Retrieves a string representation of this object.

public override string ToString()

Returns

string

String representation of this object.

Operators

operator ==(VertexPositionColor, VertexPositionColor)

Returns a value that indicates whether two VertexPositionColor are equal

public static bool operator ==(VertexPositionColor left, VertexPositionColor right)

Parameters

left VertexPositionColor

The object on the left of the equality operator.

right VertexPositionColor

The object on the right of the equality operator.

Returns

bool

true if the objects are the same; false otherwise.

operator !=(VertexPositionColor, VertexPositionColor)

Returns a value that indicates whether two VertexPositionColor are different

public static bool operator !=(VertexPositionColor left, VertexPositionColor right)

Parameters

left VertexPositionColor

The object on the left of the inequality operator.

right VertexPositionColor

The object on the right of the inequality operator.

Returns

bool

true if the objects are different; false otherwise.