Пример #1
0
 public bool Equals(CIwVec2 other)
 {
     return
                 x == other.x &&
                 y == other.y;
 }
Пример #2
0
 public void WriteVec2Fixed(string name, CIwVec2 val)
 {
     WriteArray(name, new float[] { val.x / 4096.0f, val.y / 4096.0f });
 }
Пример #3
0
 internal void WriteVec2FixedFloat(string p, CIwVec2 p_2)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 public void WriteVec2(string name, CIwVec2 val)
 {
     WriteArray(name, new int[] { val.x, val.y });
 }