java - How Ellipse to Ellipse intersection? -
i'm using java.
ellipse2d s1=new ellipse2d.float(0,0,100,100); system.out.println(s1.intersects(99, 30, 100, 100));
should return false return true. how find intersection between 2 ellipse?
thx
cademia has useful api can downloaded here. class cib.util.geo.geo2d has method geo2d#intersection calculates intersection points between 2 ellipses.
hope you. thanks.
Comments
Post a Comment