Not a Function?
in
Processing with Other Languages
•
11 months ago
this bit of code is returning a "Not a function error" when its ran on the web using processing.js but when running on just plain old processing does just fine. Does anyone know why and how it can be rewritten to work on processing.js
int r(int a){
return int(random(a));
}
int r(int a){
return int(random(a));
}
1