diff --git a/processing/app/ProcessingApplet.java b/processing/app/ProcessingApplet.java index 85381dce7..c7d1338cb 100644 --- a/processing/app/ProcessingApplet.java +++ b/processing/app/ProcessingApplet.java @@ -810,6 +810,11 @@ public class ProcessingApplet extends Applet } + public void scale(float sx, float sy) { + g.scale(sx, sy); + } + + public void scale(float x, float y, float z) { g.scale(x, y, z); } diff --git a/processing/todo.txt b/processing/todo.txt index c713ed8d8..97829bcb6 100644 --- a/processing/todo.txt +++ b/processing/todo.txt @@ -115,6 +115,8 @@ _ make note in documentation X catmullrom is broken _ write documentation for new curve functions +_ where do the 'error line is 9' messages come from? +_ these are runtime errors inside bagel code, how to trap? _ get web documentation back into cvs _ have to get rid of static i/o stuff before porting to c _ may also need to get rid of floating point constants