コード例 #1
0
 public bool Equals(Color4b other)
 {
     return(this.Equals(other.Red, other.Green, other.Blue, other.Alpha));
 }
コード例 #2
0
 public bool EpsilonEquals(Color4b other, double epsilon)
 {
     return(this.EpsilonEquals(other.Red, other.Green, other.Blue, other.Alpha, (byte)epsilon));
 }