mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
Corrected constructor cast method name
Changed `float[] parseByte(byte[])` to `float[] parseFloat(byte[])`
This commit is contained in:
@@ -9635,7 +9635,7 @@ public class PApplet extends Applet
|
||||
}
|
||||
*/
|
||||
|
||||
static final public float[] parseByte(byte what[]) {
|
||||
static final public float[] parseFloat(byte what[]) {
|
||||
float floaties[] = new float[what.length];
|
||||
for (int i = 0; i < what.length; i++) {
|
||||
floaties[i] = what[i];
|
||||
|
||||
Reference in New Issue
Block a user