Computer Science Canada (Graphics g) |
Author: | eNc [ Wed Nov 03, 2004 7:22 pm ] |
Post subject: | (Graphics g) |
umm what are the params for an arc g.fillArc(whathere,whathere,whathere,whathere,whathere,whathere) I have some idea but ive gotten confused |
Author: | wtd [ Wed Nov 03, 2004 7:26 pm ] |
Post subject: | |
http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Graphics.html |
Author: | rizzix [ Wed Nov 03, 2004 7:27 pm ] |
Post subject: | |
always read the API specs.. (aka documentation) it says: Quote: abstract void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
Fills a circular or elliptical arc covering the specified rectangle. EDIT: argh wtd, you beat me to it. |