/// <summary> /// Inflates this RectangleD structure by the specified amount. /// </summary> /// <param name="size">The amount to inflate this RectangleD.</param> public void Inflate(SizeD size) { this.Inflate(size.Width, size.Height); }
public RectangleD(double x, double y, double width, double height) { _location = new PointD(x, y); _size = new SizeD(width, height); }
public RectangleD(PointD location, SizeD size) { _location = location; _size = size; }