public bool Equals(RectF p) { return MatchFields(this, p); }
private static bool MatchFields(RectF a, RectF m) { return (a.TopLeft == m.TopLeft && a.BottomRight == m.BottomRight); }
public RectF(RectF rect) { _topLeft = new PointFloat(rect.TopLeft); _bottomRight = new PointFloat(rect.BottomRight); }