C# 클래스 GameMath.BoxIntersection

파일 보기 프로젝트 열기: npruehs/game-math

공개 메소드들

메소드 설명
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.

메소드 상세

Intersects() 공개 정적인 메소드

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. ///
리턴 bool

Intersects() 공개 정적인 메소드

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. ///
리턴 bool