AddBounds() public method

public AddBounds ( idBounds b ) : bool
b idBounds
return bool
Example #1
0
        public static idBounds operator +(idBounds a, idBounds b)
        {
            idBounds newBounds = new idBounds();

            newBounds.AddBounds(a);
            newBounds.AddBounds(b);

            return(newBounds);
        }
Example #2
0
		public static idBounds operator +(idBounds a, idBounds b)
		{
			idBounds newBounds = new idBounds();
			newBounds.AddBounds(a);
			newBounds.AddBounds(b);

			return newBounds;
		}