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