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