public Rect2d(Rect2d rect) { this.X = rect.X; this.Y = rect.Y; this.Width = rect.Width; this.Height = rect.Height; this.Origin = rect.Origin; }
public Rect2d MoveTo(Rect2d rect) { this.X = rect.X; this.Y = rect.Y; return(this); }