コード例 #1
0
ファイル: Ray.cpp プロジェクト: BenDy557/Football
bool Ray::CollideWithRadius(Vector2 posIn, float radius,Vector2& collisionPoint, float&  vectorFraction)
{
	return false;//TODO//DOESNT WORK
	Vector2 startPosDiff = (startPos - posIn);
	if((startPosDiff.Get_magnitude() - radius) < length)
	{
	//POTENTIAL COLLISION
	}
	return false;
}