Example #1
0
 /// <summary>
 /// Enlarges these bounds so that another bounds can fit inside.
 /// </summary>
 /// <param name="bounds"></param>
 public void Inflate(CoordBounds bounds)
 {
     Inflate(bounds.Top, bounds.Left);
     Inflate(bounds.Bottom, bounds.Right);
 }
Example #2
0
        /// <summary>
        /// Enlarges these bounds so that another bounds can fit inside.
        /// </summary>
        /// <param name="bounds"></param>
        public void Inflate(CoordBounds bounds)
		{
            Inflate(bounds.Top, bounds.Left);
            Inflate(bounds.Bottom, bounds.Right);
		}