I'm trying to detect a collision between two ellipses
public bool CheckCollision(Ellipse a, Ellipse b)
{
if (a.RenderedGeometry.Bounds.IntersectsWith(b.RenderedGeometry.Bounds) )
return true;
return false;
}
But it doesnt work because I get true all the time