You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Dmitriy Matveev (JIRA)" <ji...@apache.org> on 2007/07/26 14:53:41 UTC

[jira] Created: (HARMONY-4550) [classlib][awt] Hangs when trying to intersect two areas

[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.


[jira] Updated: (HARMONY-4550) [classlib][awt] Hangs when trying to intersect two areas

Posted by "Dmitriy Matveev (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-4550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dmitriy Matveev updated HARMONY-4550:
-------------------------------------

    Description: 
Reproducer below: 

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);
    }
}

  was:
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);
    }
}


> [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
>
> Reproducer below: 
> 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.