Exemplo n.º 1
0
 public bool Equals(IntVector2 that)
 {
     return(this.x == that.x && this.y == that.y);
 }
Exemplo n.º 2
0
 public V GetValue(IntVector2 position)
 {
     return(GetValue(position.x, position.y));
 }
Exemplo n.º 3
0
 public BlurField(ValueType vDef, IntVector2 size)
     : this(vDef, size.x, size.y)
 {
 }
Exemplo n.º 4
0
 public void DefineGrid(IntVector2 position, V value)
 {
     DefineGrid(position.x, position.y, value);
 }