I got this code:
var intersectionDetail = path1.Data.FillContainsWithDetail(path2.Data);
if (intersectionDetail != IntersectionDetail.NotCalculated &&
intersectionDetail != IntersectionDetail.Empty)
{
//collision
}
.FillContainsWithDetail
only works in wpf, are there any way to do this in Windows Phone?