Struct uint3x4
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Syntax
[Serializable]
public struct uint3x4 : IEquatable<uint3x4>, IFormattable
Constructors
uint3x4(Boolean)
Constructs a uint3x4 matrix from a single bool value by converting it to uint and assigning it to every component.
Declaration
Parameters
Type |
Name |
Description |
System.Boolean |
v |
|
uint3x4(Double)
Constructs a uint3x4 matrix from a single double value by converting it to uint and assigning it to every component.
Declaration
Parameters
Type |
Name |
Description |
System.Double |
v |
|
uint3x4(Int32)
Constructs a uint3x4 matrix from a single int value by converting it to uint and assigning it to every component.
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
v |
|
uint3x4(Single)
Constructs a uint3x4 matrix from a single float value by converting it to uint and assigning it to every component.
Declaration
Parameters
Type |
Name |
Description |
System.Single |
v |
|
uint3x4(UInt32)
Constructs a uint3x4 matrix from a single uint value by assigning it to every component.
Declaration
Parameters
Type |
Name |
Description |
System.UInt32 |
v |
|
uint3x4(UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32)
Constructs a uint3x4 matrix from 12 uint values given in row-major order.
Declaration
public uint3x4(uint m00, uint m01, uint m02, uint m03, uint m10, uint m11, uint m12, uint m13, uint m20, uint m21, uint m22, uint m23)
Parameters
Type |
Name |
Description |
System.UInt32 |
m00 |
|
System.UInt32 |
m01 |
|
System.UInt32 |
m02 |
|
System.UInt32 |
m03 |
|
System.UInt32 |
m10 |
|
System.UInt32 |
m11 |
|
System.UInt32 |
m12 |
|
System.UInt32 |
m13 |
|
System.UInt32 |
m20 |
|
System.UInt32 |
m21 |
|
System.UInt32 |
m22 |
|
System.UInt32 |
m23 |
|
uint3x4(bool3x4)
Constructs a uint3x4 matrix from a bool3x4 matrix by componentwise conversion.
Declaration
public uint3x4(bool3x4 v)
Parameters
uint3x4(double3x4)
Constructs a uint3x4 matrix from a double3x4 matrix by componentwise conversion.
Declaration
public uint3x4(double3x4 v)
Parameters
uint3x4(float3x4)
Constructs a uint3x4 matrix from a float3x4 matrix by componentwise conversion.
Declaration
public uint3x4(float3x4 v)
Parameters
uint3x4(int3x4)
Constructs a uint3x4 matrix from a int3x4 matrix by componentwise conversion.
Declaration
Parameters
Type |
Name |
Description |
int3x4 |
v |
|
uint3x4(uint3, uint3, uint3, uint3)
Constructs a uint3x4 matrix from four uint3 vectors.
Declaration
public uint3x4(uint3 c0, uint3 c1, uint3 c2, uint3 c3)
Parameters
Fields
c0
Declaration
Field Value
c1
Declaration
Field Value
c2
Declaration
Field Value
c3
Declaration
Field Value
zero
Declaration
public static readonly uint3x4 zero
Field Value
Properties
Item[Int32]
Returns the uint3 element at a specified index.
Declaration
public uint3 this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
Equals(Object)
Returns true if the uint3x4 is equal to a given uint3x4, false otherwise.
Declaration
public override bool Equals(object o)
Parameters
Type |
Name |
Description |
System.Object |
o |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
System.ValueType.Equals(System.Object)
Equals(uint3x4)
Returns true if the uint3x4 is equal to a given uint3x4, false otherwise.
Declaration
public bool Equals(uint3x4 rhs)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Implements
System.IEquatable<T>.Equals(T)
GetHashCode()
Returns a hash code for the uint3x4.
Declaration
public override int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
Overrides
System.ValueType.GetHashCode()
ToString()
Returns a string representation of the uint3x4.
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
System.ValueType.ToString()
Returns a string representation of the uint3x4 using a specified format and culture-specific format information.
Declaration
public string ToString(string format, IFormatProvider formatProvider)
Parameters
Type |
Name |
Description |
System.String |
format |
|
System.IFormatProvider |
formatProvider |
|
Returns
Type |
Description |
System.String |
|
Implements
System.IFormattable.ToString(System.String, System.IFormatProvider)
Operators
Addition(UInt32, uint3x4)
Returns the result of a componentwise addition operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator +(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Addition(uint3x4, UInt32)
Returns the result of a componentwise addition operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator +(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Addition(uint3x4, uint3x4)
Returns the result of a componentwise addition operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator +(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
BitwiseAnd(UInt32, uint3x4)
Returns the result of a componentwise bitwise and operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator &(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
BitwiseAnd(uint3x4, UInt32)
Returns the result of a componentwise bitwise and operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator &(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
BitwiseAnd(uint3x4, uint3x4)
Returns the result of a componentwise bitwise and operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator &(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
BitwiseOr(UInt32, uint3x4)
Returns the result of a componentwise bitwise or operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator |(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
BitwiseOr(uint3x4, UInt32)
Returns the result of a componentwise bitwise or operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator |(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
BitwiseOr(uint3x4, uint3x4)
Returns the result of a componentwise bitwise or operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator |(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
Decrement(uint3x4)
Returns the result of a componentwise decrement operation on a uint3x4 matrix.
Declaration
public static uint3x4 operator --(uint3x4 val)
Parameters
Returns
Division(UInt32, uint3x4)
Returns the result of a componentwise division operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator /(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Division(uint3x4, UInt32)
Returns the result of a componentwise division operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator /(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Division(uint3x4, uint3x4)
Returns the result of a componentwise division operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator /(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
Equality(UInt32, uint3x4)
Returns the result of a componentwise equality operation on a uint value and a uint3x4 matrix.
Declaration
public static bool3x4 operator ==(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Equality(uint3x4, UInt32)
Returns the result of a componentwise equality operation on a uint3x4 matrix and a uint value.
Declaration
public static bool3x4 operator ==(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Equality(uint3x4, uint3x4)
Returns the result of a componentwise equality operation on two uint3x4 matrices.
Declaration
public static bool3x4 operator ==(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
ExclusiveOr(UInt32, uint3x4)
Returns the result of a componentwise bitwise exclusive or operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator ^(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
ExclusiveOr(uint3x4, UInt32)
Returns the result of a componentwise bitwise exclusive or operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator ^(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
ExclusiveOr(uint3x4, uint3x4)
Returns the result of a componentwise bitwise exclusive or operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator ^(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
Explicit(Boolean to uint3x4)
Explicitly converts a single bool value to a uint3x4 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint3x4(bool v)
Parameters
Type |
Name |
Description |
System.Boolean |
v |
|
Returns
Explicit(Double to uint3x4)
Explicitly converts a single double value to a uint3x4 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint3x4(double v)
Parameters
Type |
Name |
Description |
System.Double |
v |
|
Returns
Explicit(Int32 to uint3x4)
Explicitly converts a single int value to a uint3x4 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint3x4(int v)
Parameters
Type |
Name |
Description |
System.Int32 |
v |
|
Returns
Explicit(Single to uint3x4)
Explicitly converts a single float value to a uint3x4 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint3x4(float v)
Parameters
Type |
Name |
Description |
System.Single |
v |
|
Returns
Explicit(bool3x4 to uint3x4)
Explicitly converts a bool3x4 matrix to a uint3x4 matrix by componentwise conversion.
Declaration
public static explicit operator uint3x4(bool3x4 v)
Parameters
Returns
Explicit(double3x4 to uint3x4)
Explicitly converts a double3x4 matrix to a uint3x4 matrix by componentwise conversion.
Declaration
public static explicit operator uint3x4(double3x4 v)
Parameters
Returns
Explicit(float3x4 to uint3x4)
Explicitly converts a float3x4 matrix to a uint3x4 matrix by componentwise conversion.
Declaration
public static explicit operator uint3x4(float3x4 v)
Parameters
Returns
Explicit(int3x4 to uint3x4)
Explicitly converts a int3x4 matrix to a uint3x4 matrix by componentwise conversion.
Declaration
public static explicit operator uint3x4(int3x4 v)
Parameters
Type |
Name |
Description |
int3x4 |
v |
|
Returns
GreaterThan(UInt32, uint3x4)
Returns the result of a componentwise greater than operation on a uint value and a uint3x4 matrix.
Declaration
public static bool3x4 operator>(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
GreaterThan(uint3x4, UInt32)
Returns the result of a componentwise greater than operation on a uint3x4 matrix and a uint value.
Declaration
public static bool3x4 operator>(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
GreaterThan(uint3x4, uint3x4)
Returns the result of a componentwise greater than operation on two uint3x4 matrices.
Declaration
public static bool3x4 operator>(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
GreaterThanOrEqual(UInt32, uint3x4)
Returns the result of a componentwise greater or equal operation on a uint value and a uint3x4 matrix.
Declaration
public static bool3x4 operator >=(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
GreaterThanOrEqual(uint3x4, UInt32)
Returns the result of a componentwise greater or equal operation on a uint3x4 matrix and a uint value.
Declaration
public static bool3x4 operator >=(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
GreaterThanOrEqual(uint3x4, uint3x4)
Returns the result of a componentwise greater or equal operation on two uint3x4 matrices.
Declaration
public static bool3x4 operator >=(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
Implicit(UInt32 to uint3x4)
Implicitly converts a single uint value to a uint3x4 matrix by assigning it to every component.
Declaration
public static implicit operator uint3x4(uint v)
Parameters
Type |
Name |
Description |
System.UInt32 |
v |
|
Returns
Increment(uint3x4)
Returns the result of a componentwise increment operation on a uint3x4 matrix.
Declaration
public static uint3x4 operator ++(uint3x4 val)
Parameters
Returns
Inequality(UInt32, uint3x4)
Returns the result of a componentwise not equal operation on a uint value and a uint3x4 matrix.
Declaration
public static bool3x4 operator !=(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Inequality(uint3x4, UInt32)
Returns the result of a componentwise not equal operation on a uint3x4 matrix and a uint value.
Declaration
public static bool3x4 operator !=(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Inequality(uint3x4, uint3x4)
Returns the result of a componentwise not equal operation on two uint3x4 matrices.
Declaration
public static bool3x4 operator !=(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
LeftShift(uint3x4, Int32)
Returns the result of a componentwise left shift operation on a uint3x4 matrix by a number of bits specified by a single int.
Declaration
public static uint3x4 operator <<(uint3x4 x, int n)
Parameters
Type |
Name |
Description |
uint3x4 |
x |
|
System.Int32 |
n |
|
Returns
LessThan(UInt32, uint3x4)
Returns the result of a componentwise less than operation on a uint value and a uint3x4 matrix.
Declaration
public static bool3x4 operator <(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
LessThan(uint3x4, UInt32)
Returns the result of a componentwise less than operation on a uint3x4 matrix and a uint value.
Declaration
public static bool3x4 operator <(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
LessThan(uint3x4, uint3x4)
Returns the result of a componentwise less than operation on two uint3x4 matrices.
Declaration
public static bool3x4 operator <(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
LessThanOrEqual(UInt32, uint3x4)
Returns the result of a componentwise less or equal operation on a uint value and a uint3x4 matrix.
Declaration
public static bool3x4 operator <=(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
LessThanOrEqual(uint3x4, UInt32)
Returns the result of a componentwise less or equal operation on a uint3x4 matrix and a uint value.
Declaration
public static bool3x4 operator <=(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
LessThanOrEqual(uint3x4, uint3x4)
Returns the result of a componentwise less or equal operation on two uint3x4 matrices.
Declaration
public static bool3x4 operator <=(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
Modulus(UInt32, uint3x4)
Returns the result of a componentwise modulus operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator %(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Modulus(uint3x4, UInt32)
Returns the result of a componentwise modulus operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator %(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Modulus(uint3x4, uint3x4)
Returns the result of a componentwise modulus operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator %(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
Multiply(UInt32, uint3x4)
Returns the result of a componentwise multiplication operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator *(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Multiply(uint3x4, UInt32)
Returns the result of a componentwise multiplication operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator *(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Multiply(uint3x4, uint3x4)
Returns the result of a componentwise multiplication operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator *(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
OnesComplement(uint3x4)
Returns the result of a componentwise bitwise not operation on a uint3x4 matrix.
Declaration
public static uint3x4 operator ~(uint3x4 val)
Parameters
Returns
RightShift(uint3x4, Int32)
Returns the result of a componentwise right shift operation on a uint3x4 matrix by a number of bits specified by a single int.
Declaration
public static uint3x4 operator >>(uint3x4 x, int n)
Parameters
Type |
Name |
Description |
uint3x4 |
x |
|
System.Int32 |
n |
|
Returns
Subtraction(UInt32, uint3x4)
Returns the result of a componentwise subtraction operation on a uint value and a uint3x4 matrix.
Declaration
public static uint3x4 operator -(uint lhs, uint3x4 rhs)
Parameters
Type |
Name |
Description |
System.UInt32 |
lhs |
|
uint3x4 |
rhs |
|
Returns
Subtraction(uint3x4, UInt32)
Returns the result of a componentwise subtraction operation on a uint3x4 matrix and a uint value.
Declaration
public static uint3x4 operator -(uint3x4 lhs, uint rhs)
Parameters
Type |
Name |
Description |
uint3x4 |
lhs |
|
System.UInt32 |
rhs |
|
Returns
Subtraction(uint3x4, uint3x4)
Returns the result of a componentwise subtraction operation on two uint3x4 matrices.
Declaration
public static uint3x4 operator -(uint3x4 lhs, uint3x4 rhs)
Parameters
Returns
UnaryNegation(uint3x4)
Returns the result of a componentwise unary minus operation on a uint3x4 matrix.
Declaration
public static uint3x4 operator -(uint3x4 val)
Parameters
Returns
UnaryPlus(uint3x4)
Returns the result of a componentwise unary plus operation on a uint3x4 matrix.
Declaration
public static uint3x4 operator +(uint3x4 val)
Parameters
Returns