public bool Equals(SizeFloat p) { return(MatchFields(this, p)); }
public SizeFloat(SizeFloat s) { _Width = s.Width; _Height = s.Height; }
private static bool MatchFields(SizeFloat a, SizeFloat m) { return(a.Width == m.Width && a.Height == m.Height); }
public RectF(PointFloat topLeft, SizeFloat size) { _topLeft = topLeft; _bottomRight = new PointFloat(size.Width + topLeft.X - 1, size.Height + topLeft.Y - 1); }
public RectF(float X, float Y, SizeFloat size) { _topLeft = new PointFloat(X, Y); _bottomRight = new PointFloat(size.Width + X - 1, size.Height + Y - 1); }
private static bool MatchFields(SizeFloat a, SizeFloat m) { return (a.Width == m.Width && a.Height == m.Height); }
public bool Equals(SizeFloat p) { return MatchFields(this, p); }