All pastes #2054987 Raw Edit

Miscellany

public text v1 · immutable
#2054987 ·published 2011-05-07 21:09 UTC
rendered paste body

bool RectRectCollision(Rec A, Rec B)
{
	int i = 0;
	while(i < 4)
	{
		if(PointRectCollision(A,B.corner[i]))
			return true;
			
		if(PointRectCollision(B,A.corner[i]))
			return true;
	}
	
	return false;
}