コード例 #1
0
ファイル: fp2.cs プロジェクト: Vengarioth/FPMath
 public bool Equals(fp2 other)
 {
     return(x.Equals(other.x) && y.Equals(other.y));
 }
コード例 #2
0
 public bool Equals(fp3 other)
 {
     return(x.Equals(other.x) && y.Equals(other.y) && z.Equals(other.z));
 }