Exemplo n.º 1
0
 public BoundingBox(Location topLeft, int height, int width)
 {
     this.TopLeft = topLeft;
     this.BottomRight = new Location(topLeft.Y + height, topLeft.X + width);
 }
Exemplo n.º 2
0
 public BoundingBox(Location topLeft, Location bottomRight)
 {
     this.TopLeft = topLeft;
     this.BottomRight = bottomRight;
 }