public bool Equals(Rectangle2D other) =>
 Position.Equals(other.Position) &&
 Width.IsApproximately(other.Width) &&
 Height.IsApproximately(other.Height) &&
 AngleInDegrees.IsApproximately(other.AngleInDegrees);