AddBounds() 공개 메소드

public AddBounds ( idBounds b ) : bool
b idBounds
리턴 bool
예제 #1
0
        public static idBounds operator +(idBounds a, idBounds b)
        {
            idBounds newBounds = new idBounds();

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

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

			return newBounds;
		}