mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
thin lines and keyboard actually working
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user