示例#1
0
 public bool Equals(Color4f other)
 {
     return(this.Equals(other.Red, other.Green, other.Blue, other.Alpha));
 }
示例#2
0
 public bool EpsilonEquals(Color4f other, double epsilon)
 {
     return(this.EpsilonEquals(other.Red, other.Green, other.Blue, other.Alpha, (float)epsilon));
 }