public bool Equals(Transform2D other)
 {
     return(x.Equals(other.x) && y.Equals(other.y) && origin.Equals(other.origin));
 }
Пример #2
0
 public bool Equals(Rect2 other)
 {
     return(position.Equals(other.position) && size.Equals(other.size));
 }