finished cleaning PGraphics3

This commit is contained in:
benfry
2005-02-27 20:19:53 +00:00
parent 75cf927c3e
commit 25e1c47e0b
6 changed files with 266 additions and 144 deletions

View File

@@ -463,8 +463,8 @@ public class PGraphics2 extends PGraphics {
}
public void arcImpl(float start, float stop,
float x, float y, float w, float h) {
public void arcImpl(float x, float y, float w, float h,
float start, float stop) {
arc.setArc(x, y, w, h, start, stop-start, Arc2D.PIE);
draw_shape(arc);
}