コード例 #1
0
 public static bool operator !=(Vector2 lhs, Vector2 rhs)
 {
     return(Vector2.SqrMagnitude(lhs - rhs) >= 9.99999944E-11f);
 }