ExclusiveOr in Java
Description
The following code shows how to exclusiveOr.
Example
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.geom.Area;
// w ww . j av a2 s . c o m
import javax.swing.JComponent;
import javax.swing.JFrame;
class MyCanvas extends JComponent {
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
Area shape = new Area(new Rectangle(10, 10, 400, 400));
g2d.draw(shape);
shape.exclusiveOr(new Area(new Rectangle(200, 200, 230, 400)));
g2d.draw(shape);
}
}
public class Main {
public static void main(String[] a) {
JFrame window = new JFrame();
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setBounds(30, 30, 450, 450);
window.getContentPane().add(new MyCanvas());
window.setVisible(true);
}
}
The code above generates the following result.