mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
add support for printing arrays of longs
This commit is contained in:
@@ -3707,6 +3707,13 @@ public class PApplet extends Applet
|
||||
}
|
||||
break;
|
||||
|
||||
case 'J': // int
|
||||
long jj[] = (long[]) what;
|
||||
for (int i = 0; i < jj.length; i++) {
|
||||
System.out.println("[" + i + "] " + jj[i]);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'F': // float
|
||||
float ff[] = (float[]) what;
|
||||
for (int i = 0; i < ff.length; i++) {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
0205 core
|
||||
X add support for println(long) because it was converting the type to float
|
||||
X http://code.google.com/p/processing/issues/detail?id=969
|
||||
X also add support for printing arrays of longs (doubles were already there)
|
||||
|
||||
|
||||
sort out full screen issues
|
||||
@@ -87,6 +88,8 @@ _ and merge it in statically via the methods code
|
||||
_ make sure rendering is happening on the EDT
|
||||
_ (hopefully fixes flicker issues)
|
||||
_ change PApplet.java javadoc to reflect the change
|
||||
_ Update http://wiki.processing.org/w/Troubleshooting#Flicker
|
||||
_ http://code.google.com/p/processing/issues/detail?id=775
|
||||
|
||||
_ memory leak when many createGraphics(..., JAVA2D) calls are used
|
||||
_ http://code.google.com/p/processing/issues/detail?id=507
|
||||
|
||||
Reference in New Issue
Block a user