C# Class GameMath.BoxIntersection

Show file Open project: npruehs/game-math

Public Methods

Method Description
Intersects ( this first, BoxF second ) : bool

Checks whether the two specified boxes at least partially intersect each other.

Intersects ( this first, BoxI second ) : bool

Checks whether the two specified boxes at least partially intersect each other.

Method Details

Intersects() public static method

Checks whether the two specified boxes at least partially intersect each other.
public static Intersects ( this first, BoxF second ) : bool
first this /// First box to check. ///
second BoxF /// Second box to check. ///
return bool

Intersects() public static method

Checks whether the two specified boxes at least partially intersect each other.
public static Intersects ( this first, BoxI second ) : bool
first this /// First box to check. ///
second BoxI /// Second box to check. ///
return bool