[classlib][awt] Hangs when trying to intersect two areas
--------------------------------------------------------
Key: HARMONY-4550
URL: https://issues.apache.org/jira/browse/HARMONY-4550
Project: Harmony
Issue Type: Bug
Components: Classlib
Reporter: Dmitriy Matveev
import java.awt.geom.Area;
import java.awt.geom.Ellipse2D;
public class PearModeTest {
public static void main(String[] args) {
Ellipse2D ell = new Ellipse2D.Double(-16, 11, 15.0, 15.0);
Area ar = new Area(ell);
ell.setFrame(-14, -7, 30.0, 30.0);
Area ar2 = new Area(ell);
ar.intersect(ar2);
}
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|