thin lines and keyboard actually working

This commit is contained in:
benfry
2001-12-10 05:32:29 +00:00
parent aff12236bd
commit 9f8047bd2f
2 changed files with 31 additions and 10 deletions

View File

@@ -87,6 +87,12 @@ public class ProcessingApplet extends Applet
}
//public Dimension getPreferredSize() {
//println("getting pref'd size");
//return new Dimension(width, height);
//}
// ------------------------------------------------------------
@@ -432,6 +438,10 @@ public class ProcessingApplet extends Applet
System.out.print(what);
}
public void print(Object what) {
System.out.print(what.toString());
}
public void println(boolean what) {
print(what); System.out.println();
}
@@ -448,6 +458,10 @@ public class ProcessingApplet extends Applet
print(what); System.out.println();
}
public void println(Object what) {
System.out.println(what.toString());
}
public void println() {
System.out.println();
}