コード例 #1
0
ファイル: Color4f.cs プロジェクト: JohannesMP/Essence
 public bool Equals(Color4f other)
 {
     return(this.Equals(other.Red, other.Green, other.Blue, other.Alpha));
 }
コード例 #2
0
ファイル: Color4f.cs プロジェクト: JohannesMP/Essence
 public bool EpsilonEquals(Color4f other, double epsilon)
 {
     return(this.EpsilonEquals(other.Red, other.Green, other.Blue, other.Alpha, (float)epsilon));
 }