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