Table of Contents

Struct Short4

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

Packed vector type containing four 16-bit signed integer values.

public struct Short4 : IPackedVector<ulong>, IPackedVector, IEquatable<Short4>
Implements
Inherited Members

Constructors

Short4(Vector4)

Initializes a new instance of this structure.

public Short4(Vector4 vector)

Parameters

vector Vector4

A Vector4 value who's components contain the initial values for this structure.

Short4(float, float, float, float)

Initializes a new instance of this structure.

public Short4(float x, float y, float z, float w)

Parameters

x float

The initial x-component value for this structure.

y float

The initial y-component value for this structure.

z float

The initial z-component value for this structure.

w float

The initial 2-component value for this structure.

Properties

PackedValue

Directly gets or sets the packed representation of the value.

public ulong PackedValue { get; set; }

Property Value

ulong

Methods

Equals(Short4)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(Short4 other)

Parameters

other Short4

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Indicates whether this instance and a specified object are equal.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with the current instance.

Returns

bool

true if obj and this instance are the same type and represent the same value; otherwise, false.

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()

Returns the fully qualified type name of this instance.

public override string ToString()

Returns

string

The fully qualified type name.

ToVector4()

Expands the packed representation into a Vector4.

public Vector4 ToVector4()

Returns

Vector4

The expanded Vector4.

Operators

operator ==(Short4, Short4)

Returns a value that indicates whether the two values are equal.

public static bool operator ==(Short4 a, Short4 b)

Parameters

a Short4

The value on the left of the equality operator.

b Short4

The value on the right of the equality operator.

Returns

bool

true if the two values are equal; otherwise, false.

operator !=(Short4, Short4)

Returns a value that indicates whether the two value are not equal.

public static bool operator !=(Short4 a, Short4 b)

Parameters

a Short4

The value on the left of the inequality operator.

b Short4

The value on the right of the inequality operator.

Returns

bool

true if the two value are not equal; otherwise, false.