This is the best tutorial about for loops I ever taken , also the push/pop matrix one. Pls more video :)
@verobj10 жыл бұрын
Omg!!!!!! Thank you so muchhhhhhhh!!!!!! You are a great teacher! Very calm, funny and lovely!!! Please make more videos about processing!
@Fairplay20159 жыл бұрын
NOW I UNDERSTAND WHAT IS LOOP, YOU ARE AWSOME MAN. BE BESED
@harrybarnum68264 жыл бұрын
YOU ARE A BLOODY LEGEND MATE THANK YOU
@manpreetkaur0405878 жыл бұрын
thank you very much sir. its really good way to make clear of our confusions about for loop codes.
@FindingLaika9 жыл бұрын
Super informative, easy to understand Plus your voice is kinda soothing
@mattkavanagh705810 жыл бұрын
very well explained - clear and succinct - thankyou,
@tobvonstieglitz18919 жыл бұрын
This helped me a lot. you can explain very well! thanks!
@moinaction9 жыл бұрын
Thanks so much for this tutorial. I like it
@basalduat10 жыл бұрын
Well done John! However, please enlarge the font size of the editor to 18 pt or larger. Finally, before you stop the recording let us see ALL the code before you stop. Sincerely, Tim
@angelatocchi256011 жыл бұрын
void setup() { size(600,600); } void draw() { background (0); for(int i=0; i < 20; i++); { ellipse( 50*i,50, 20, 20); } } When I put in your code it tells me "cannot find anything named i." I know the problem is with the " ellipse( 50*i,50, 20, 20);" but I cannot figure out what went wrong.
@xClayy10 жыл бұрын
You need to get rid of the semi-colon after your parenthesis in your for loop. Having the semi-colon there makes the loop close, and when you call i again your program doesn't know where to find it. void setup() { size(600,600); } void draw() { background (0); for(int i=0; i < 20; i++) { ellipse( 50*i,50, 20, 20); } }