Is there any way to calculate the symmetric difference between two regions (triangle and circle) in java (android)?
I have classes like this
public class Triangle{
double[] a;
double[] b;
double[] c;
}
public class Circle{
double center;
double radius;
}
and now i need to know the symmetric difference between those regions. I can not find anything related to do this.