Hello,
i have two android.graphics.Path objects and i want to check if they
intersect.
The only way i found out so far, is to build regions from them and
then go through every pixel with
if ((region1.contains(x,y)) && (region2.contains(x,y))) {
// intersection
}
but it is unbelievable slow.
is there a faster way to do this?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---