how can i create the same pattern with loadPixels() ?
in
Programming Questions
•
9 months ago
Hi list, how can i create the same pattern but using loadPixels and updatePixels() ?
S.
- for (int i=0;i< 32; i++){
- for (int j=0;j< 56; j++){
point(j * 30, i * 30 ) ;
}
}
S.
1