java2d actually running.. trippy

This commit is contained in:
benfry
2005-02-15 17:19:15 +00:00
parent 94418692d0
commit cb07bb1a64
3 changed files with 417 additions and 52 deletions

View File

@@ -2558,18 +2558,18 @@ public class PGraphics extends PImage implements PConstants {
class Path {
public void moveTo(float x, float y) {
public void moveTo(float x, float y) { // ignore
}
public void lineTo(float x, float y) {
public void lineTo(float x, float y) { // ignore
}
public void curveTo(float x1, float y1,
public void curveTo(float x1, float y1, // ignore
float x2, float y2,
float x3, float y3) {
}
public void closePath() {
public void closePath() { // ignore
}
}