public static void moire
(Graphics g, int x, int y, int width, int height) {
int i = 1;
while (i<width) {
g.drawOval (0, 0, i, i);
i = i + 2;
}
}
http://math.hws.edu/xJava/other/Moire1.html http://tqd.advanced.org/3543/moirelesson.html