Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-1240723

fp.bugs 3433 Rectangle.intersects() fails example

XMLWordPrintable

    • 1.0.2
    • sparc
    • solaris_2.5
    • Verified

        
      From: "Brian N. Miller" <###@###.###>
      This does not look like form output to me.


      Description:

      For any two rectangles A and B, if A intersects B, then B also
      intersects A. Rectangle.intersects() fails to uphold this.

      Configuration: Either Solaris2.4 or Windows95, stand-alone app.

      JDK Version: JDK1.0

      Example:

      /* This file: test.java
         Invocation: javac test.java ; java test
         Output:
            a.intersects(b) == false
            b.intersects(a) == true
      */
      import java.awt.*;
      public class test
      {
         public static void main (String args[])
         {
            Rectangle a = new Rectangle(0,0,1,1),
                      b = new Rectangle(1,0,1,1);
            System.out.println("a.intersects(b) == "+a.intersects(b));
            System.out.println("b.intersects(a) == "+b.intersects(a));
         }
      }

            flar Jim Graham
            bhagen Benjamin Hagen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: