Exemplo n.º 1
0
 public BoundingBox2 Include(ref BoundingBox2 box)
 {
     this.Min = Vector2.Min(this.Min, box.Min);
     this.Max = Vector2.Max(this.Max, box.Max);
     return(this);
 }