2.2: Variables in p5.js (Make your own) - p5.js Tutorial

preview_player
Показать описание


Рекомендации по теме
Комментарии
Автор

Mr. Shiffman. I can not even begin to tell you how thankful I am for these videos. You’ve made something that at one point seemed so intimidating actually very simple. Thanks again.

scottgonzalez
Автор

Seriously, this dude is one of the best teachers I've ever come across.

longslongprong
Автор

9 years later still amazing to learn from this video !

kbluuzy
Автор

I know that this is just a absolute bare beginnings of coding but man, you make it so interesting. I'm an old guy so watching other really dry coding tutorials that assume you're in a computer science program is just brutal for me. Thanks so much for your work!

Dextergec
Автор

You are amazing. I struggle with my uni assessments and their teaching methods, and I found your videos more valuable than my 10, 000 GBP university programme. Many thanks

namirkafka
Автор

Thanks for making these helpful videos, I can’t imagine how hard it would be to study p5.js without your lessons, you did an amazing work.

柯楚衣
Автор

Anyone else feel like he is the programming equivalent of Bob Ross?

-Average-
Автор

This video is really good to learn he explains everything in such a natural and easy understanding way

isaaaaaaaaaa
Автор

dude these videos are amazingly helpful, cant thank you enough

Gpayne
Автор

This format of teaching seems to have hit the spot for me. Can't thank you enough. For the first time, Javascript (p5.js at least) is all starting to make sense. I can't recommend you enough. I'm hooked. Great work, I'd say keep it up but I see that you have by the masses of tutorials you've done. Can't wait to go through them. Be great if you did some on React. :) Thank you so much for doing this.

tonyK_
Автор

my youtube comments are finally showing for me to input this.. thank you for existing and caring so much about this.. i really was lost until now

Bunglay
Автор

10:46 that's literally how i felt this guy is super relatable

TheFishKing
Автор

you are an excellent teacher, i enjoy how well you explain everything

anukampasharma
Автор

You are the best trainer I have ever found, love your, amazing knowledge taught with such incredible charisma. I am so grateful.
H

youhuwtube
Автор

Thanks for these great tutorials. Feels like coding kindergarten and I love it, great fun.

spaceviolet
Автор

You really know how to teach and its free lol finally i know how a variable works!! thanks man

hlyzr
Автор

Thx for tutorials! You are the best teacher in the world!

crazygreen
Автор

Oh god! I don even know how he can describe such a very complex concept into a very fun lesson

kko
Автор

Remember that thing called 'var'? It's called 'let' now :)

merijndenhouting
Автор

try this code //hold mouse button to draw & hit the space-bar to clear canvas

function setup() {
createCanvas(600, 400);
background(250, 250, 100);

}
function mouseDragged() {
noStroke();
fill(255, 0, 0, 20);
ellipse(mouseX, mouseY, 50, 50);
}
function keyPressed() {
if (keyCode == 32)
background(250, 250, 100);
}

mohammedsalman
join shbcf.ru