AddBounds() public method

public AddBounds ( idBounds b ) : bool
b idBounds
return bool
コード例 #1
0
ファイル: idBounds.cs プロジェクト: PEMantis/idtech4.net
        public static idBounds operator +(idBounds a, idBounds b)
        {
            idBounds newBounds = new idBounds();

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

            return(newBounds);
        }
コード例 #2
0
ファイル: idBounds.cs プロジェクト: iainmckay/idtech4.net
		public static idBounds operator +(idBounds a, idBounds b)
		{
			idBounds newBounds = new idBounds();
			newBounds.AddBounds(a);
			newBounds.AddBounds(b);

			return newBounds;
		}