コード例 #1
0
 public Rect2d(Rect2d rect)
 {
     this.X      = rect.X;
     this.Y      = rect.Y;
     this.Width  = rect.Width;
     this.Height = rect.Height;
     this.Origin = rect.Origin;
 }
コード例 #2
0
 public Rect2d MoveTo(Rect2d rect)
 {
     this.X = rect.X;
     this.Y = rect.Y;
     return(this);
 }