Struct int2
A 2 component vector of ints.
Inherited Members
Namespace: Unity.Mathematics
Assembly: Unity.Mathematics.dll
Syntax
[Serializable]
public struct int2 : IEquatable<int2>, IFormattable
  Constructors
| Name | Description | 
|---|---|
| int2(bool) | Constructs a int2 vector from a single bool value by converting it to int and assigning it to every component.  | 
      
| int2(double) | Constructs a int2 vector from a single double value by converting it to int and assigning it to every component.  | 
      
| int2(int) | Constructs a int2 vector from a single int value by assigning it to every component.  | 
      
| int2(int, int) | Constructs a int2 vector from two int values.  | 
      
| int2(float) | Constructs a int2 vector from a single float value by converting it to int and assigning it to every component.  | 
      
| int2(uint) | Constructs a int2 vector from a single uint value by converting it to int and assigning it to every component.  | 
      
| int2(bool2) | Constructs a int2 vector from a bool2 vector by componentwise conversion.  | 
      
| int2(double2) | Constructs a int2 vector from a double2 vector by componentwise conversion.  | 
      
| int2(float2) | Constructs a int2 vector from a float2 vector by componentwise conversion.  | 
      
| int2(int2) | Constructs a int2 vector from an int2 vector.  | 
      
| int2(uint2) | Constructs a int2 vector from a uint2 vector by componentwise conversion.  | 
      
Fields
| Name | Description | 
|---|---|
| x | x component of the vector.  | 
      
| y | y component of the vector.  | 
      
| zero | int2 zero value.  | 
      
Properties
| Name | Description | 
|---|---|
| this[int] | Returns the int element at a specified index.  | 
      
Methods
| Name | Description | 
|---|---|
| Equals(object) | Returns true if the int2 is equal to a given int2, false otherwise.  | 
      
| Equals(int2) | Returns true if the int2 is equal to a given int2, false otherwise.  | 
      
| GetHashCode() | Returns a hash code for the int2.  | 
      
| ToString() | Returns a string representation of the int2.  | 
      
| ToString(string, IFormatProvider) | Returns a string representation of the int2 using a specified format and culture-specific format information.  | 
      
Operators
| Name | Description | 
|---|---|
| operator +(int, int2) | Returns the result of a componentwise addition operation on an int value and an int2 vector.  | 
      
| operator +(int2, int) | Returns the result of a componentwise addition operation on an int2 vector and an int value.  | 
      
| operator +(int2, int2) | Returns the result of a componentwise addition operation on two int2 vectors.  | 
      
| operator &(int, int2) | Returns the result of a componentwise bitwise and operation on an int value and an int2 vector.  | 
      
| operator &(int2, int) | Returns the result of a componentwise bitwise and operation on an int2 vector and an int value.  | 
      
| operator &(int2, int2) | Returns the result of a componentwise bitwise and operation on two int2 vectors.  | 
      
| operator |(int, int2) | Returns the result of a componentwise bitwise or operation on an int value and an int2 vector.  | 
      
| operator |(int2, int) | Returns the result of a componentwise bitwise or operation on an int2 vector and an int value.  | 
      
| operator |(int2, int2) | Returns the result of a componentwise bitwise or operation on two int2 vectors.  | 
      
| operator --(int2) | Returns the result of a componentwise decrement operation on an int2 vector.  | 
      
| operator /(int, int2) | Returns the result of a componentwise division operation on an int value and an int2 vector.  | 
      
| operator /(int2, int) | Returns the result of a componentwise division operation on an int2 vector and an int value.  | 
      
| operator /(int2, int2) | Returns the result of a componentwise division operation on two int2 vectors.  | 
      
| operator ==(int, int2) | Returns the result of a componentwise equality operation on an int value and an int2 vector.  | 
      
| operator ==(int2, int) | Returns the result of a componentwise equality operation on an int2 vector and an int value.  | 
      
| operator ==(int2, int2) | Returns the result of a componentwise equality operation on two int2 vectors.  | 
      
| operator ^(int, int2) | Returns the result of a componentwise bitwise exclusive or operation on an int value and an int2 vector.  | 
      
| operator ^(int2, int) | Returns the result of a componentwise bitwise exclusive or operation on an int2 vector and an int value.  | 
      
| operator ^(int2, int2) | Returns the result of a componentwise bitwise exclusive or operation on two int2 vectors.  | 
      
| explicit operator int2(bool) | Explicitly converts a single bool value to a int2 vector by converting it to int and assigning it to every component.  | 
      
| explicit operator int2(double) | Explicitly converts a single double value to a int2 vector by converting it to int and assigning it to every component.  | 
      
| explicit operator int2(float) | Explicitly converts a single float value to a int2 vector by converting it to int and assigning it to every component.  | 
      
| explicit operator int2(uint) | Explicitly converts a single uint value to a int2 vector by converting it to int and assigning it to every component.  | 
      
| explicit operator int2(bool2) | Explicitly converts a bool2 vector to a int2 vector by componentwise conversion.  | 
      
| explicit operator int2(double2) | Explicitly converts a double2 vector to a int2 vector by componentwise conversion.  | 
      
| explicit operator int2(float2) | Explicitly converts a float2 vector to a int2 vector by componentwise conversion.  | 
      
| explicit operator int2(uint2) | Explicitly converts a uint2 vector to a int2 vector by componentwise conversion.  | 
      
| operator >(int, int2) | Returns the result of a componentwise greater than operation on an int value and an int2 vector.  | 
      
| operator >(int2, int) | Returns the result of a componentwise greater than operation on an int2 vector and an int value.  | 
      
| operator >(int2, int2) | Returns the result of a componentwise greater than operation on two int2 vectors.  | 
      
| operator >=(int, int2) | Returns the result of a componentwise greater or equal operation on an int value and an int2 vector.  | 
      
| operator >=(int2, int) | Returns the result of a componentwise greater or equal operation on an int2 vector and an int value.  | 
      
| operator >=(int2, int2) | Returns the result of a componentwise greater or equal operation on two int2 vectors.  | 
      
| implicit operator int2(int) | Implicitly converts a single int value to a int2 vector by assigning it to every component.  | 
      
| operator ++(int2) | Returns the result of a componentwise increment operation on an int2 vector.  | 
      
| operator !=(int, int2) | Returns the result of a componentwise not equal operation on an int value and an int2 vector.  | 
      
| operator !=(int2, int) | Returns the result of a componentwise not equal operation on an int2 vector and an int value.  | 
      
| operator !=(int2, int2) | Returns the result of a componentwise not equal operation on two int2 vectors.  | 
      
| operator <<(int2, int) | Returns the result of a componentwise left shift operation on an int2 vector by a number of bits specified by a single int.  | 
      
| operator <(int, int2) | Returns the result of a componentwise less than operation on an int value and an int2 vector.  | 
      
| operator <(int2, int) | Returns the result of a componentwise less than operation on an int2 vector and an int value.  | 
      
| operator <(int2, int2) | Returns the result of a componentwise less than operation on two int2 vectors.  | 
      
| operator <=(int, int2) | Returns the result of a componentwise less or equal operation on an int value and an int2 vector.  | 
      
| operator <=(int2, int) | Returns the result of a componentwise less or equal operation on an int2 vector and an int value.  | 
      
| operator <=(int2, int2) | Returns the result of a componentwise less or equal operation on two int2 vectors.  | 
      
| operator %(int, int2) | Returns the result of a componentwise modulus operation on an int value and an int2 vector.  | 
      
| operator %(int2, int) | Returns the result of a componentwise modulus operation on an int2 vector and an int value.  | 
      
| operator %(int2, int2) | Returns the result of a componentwise modulus operation on two int2 vectors.  | 
      
| operator *(int, int2) | Returns the result of a componentwise multiplication operation on an int value and an int2 vector.  | 
      
| operator *(int2, int) | Returns the result of a componentwise multiplication operation on an int2 vector and an int value.  | 
      
| operator *(int2, int2) | Returns the result of a componentwise multiplication operation on two int2 vectors.  | 
      
| operator ~(int2) | Returns the result of a componentwise bitwise not operation on an int2 vector.  | 
      
| operator >>(int2, int) | Returns the result of a componentwise right shift operation on an int2 vector by a number of bits specified by a single int.  | 
      
| operator -(int, int2) | Returns the result of a componentwise subtraction operation on an int value and an int2 vector.  | 
      
| operator -(int2, int) | Returns the result of a componentwise subtraction operation on an int2 vector and an int value.  | 
      
| operator -(int2, int2) | Returns the result of a componentwise subtraction operation on two int2 vectors.  | 
      
| operator -(int2) | Returns the result of a componentwise unary minus operation on an int2 vector.  | 
      
| operator +(int2) | Returns the result of a componentwise unary plus operation on an int2 vector.  |