Example #1
0
 /// <summary>
 /// Expand this bounding box to include the specified geometry with its own bounding box
 /// </summary>
 /// <param name="geometry"></param>
 public void Include(IBoxBoundable geometry)
 {
     Include(geometry.BoundingBox);
 }
Example #2
0
 /// <summary>
 /// Initialise a bounding box to contain a box-bounded geometry
 /// </summary>
 /// <param name="geometry"></param>
 public BoundingBox(IBoxBoundable geometry)
     : this(geometry.BoundingBox)
 {
 }