Exemplo n.º 1
0
 public RectangleType(T x, T y, T width, T height)
 {
     this.location = new PointType <T>(x, y);
     this.size     = new SizeType <T>(width, height);
 }
Exemplo n.º 2
0
 public RectangleType(PointType <T> location, SizeType <T> size)
 {
     this.location = location;
     this.size     = size;
 }