I have nothing to do with coding but i can not stop watching your videos:) Please never stop !
@luismiguelgallegogomez80007 жыл бұрын
Awesome Processing tutorial! :)
@yourimulder68977 жыл бұрын
I enjoy watching these coding challenges soooooo much! Nice way to learn some math and coding all at once
@Ozziepeck117 жыл бұрын
I have never watched so many videos from the same youtuber. you are amazing, keep it up.
@subhraneelmazumder90794 жыл бұрын
Not even vsauce's?
@kairat_7 жыл бұрын
Hi from Kazakhstan! You are awesome dude!
@TheCodingTrain7 жыл бұрын
thank you!
@Lucas-hp4il7 жыл бұрын
Very entertaining video, i really enjoy them all!!
@TheCodingTrain7 жыл бұрын
thank you!!
@Engineer97367 жыл бұрын
Great series, enjoying it!
@cheraitramzi81143 жыл бұрын
I love you man, you are the best
@Ruhgtfo5 жыл бұрын
Wow awesome level of brilliant dayum
@东风快递加拿大分公司4 жыл бұрын
Is it possible to click on some vertex and drag it so that the image can deform?
@Hamzaelbouti7 жыл бұрын
hi i love your videos , i have question , can i use p5 with nwjs for desktop applications ??
@JJTrades_X7 жыл бұрын
Dan, you need a purple Merlin Wizard hat.
@vtvtify7 жыл бұрын
Justin Fattz CORRECT😂😂😂😂
@zyphit7 жыл бұрын
Perlin Wizard Noise Hat
@zyphit7 жыл бұрын
A Perlin Wizard Noise Hat is just a Sorting Hat that generates random numbers.
@TheCodingTrain7 жыл бұрын
Hah, love this!
@JohnDoe-ni9zm2 жыл бұрын
could the X coordinate of the particle in the row below not be different? Should you not calculate a u2 like you calculate the v2?
@nasserben477 жыл бұрын
you are verry gifted 😃😀😊😊😊☺☺
@villitriex7 жыл бұрын
Could you code a pinball machine?
@dannywise77 жыл бұрын
Tocayo, you've gone too far :o
@InvincibleSummer-s8p7 жыл бұрын
Where's the video where you move an image across the screen?? Like the bouncing ball but with an image
@PhilBoswell7 жыл бұрын
How about a variation that takes text and displays it like a banner towed behind an advertising plane?
@OviedoSaul7 жыл бұрын
Awesome!
@micahwaring82247 жыл бұрын
Is this only available trough the link on the other video?
@TheCodingTrain7 жыл бұрын
Correct, I tend to release the videos space out a bit, will make this one public later.
@AmanSharma-hi3fd7 жыл бұрын
thank u for such great videos..... :-)
@anetkaf25584 жыл бұрын
Good afternoon. Sorry for my mistakes, i'm from another country. I am current learning to code. I received the task to make the flag of Ukraine and so that it develops. Found you video but there is no cod where i can just download it. Help. Thanks
@ebicer7 жыл бұрын
This is beautifull D:
@TheCodingTrain7 жыл бұрын
Thank you!
@creysys88847 жыл бұрын
Now make the cloth collide with itself :P
@timmellis50387 жыл бұрын
Hi Dan. I've been trying to figure this out for a month... do you know how I can move this bunker? It is stuck in this place and I can't move it. I'm a noob. I don't understand processing but I studied vectors to try to move it but people say to use createGraphics but I have no idea how to do that. Thank you... Here's my horrible code: var bunkers = []; function setup() { createCanvas(window.innerWidth, window.innerHeight); for (var i = 0; i < 2; i++){ bunkers[i] = new Bunker(); } } function draw() { background(0); for (var i =0; i < 2; i++){ bunkers[i].show(); } } function Bunker(x, y){ var v1 = createVector(200, 50); this.x = x; this.y = y; this.r = 60; this.show = function(){ push(); noStroke(); fill(0, 100, 0); beginShape(); vertex(v1.x, v1.y); vertex(208, 50); vertex(208, 42); vertex(216, 42); vertex(216, 34); vertex(224, 34); vertex(224, 26); vertex(290, 26); vertex(290, 34); vertex(298, 34); vertex(298, 42); vertex(306, 42); vertex(306, 50); vertex(314, 50); vertex(314, 110); vertex(290, 110); vertex(290, 102); vertex(282, 102); vertex(282, 94); vertex(274, 94); vertex(274, 86); vertex(240, 86); vertex(240, 94); vertex(232, 94); vertex(232, 102); vertex(224, 102); vertex(224, 110); vertex(200, 110); endShape(CLOSE); pop(); } }
@DagaraLP7 жыл бұрын
var bunker; function setup() { createCanvas(window.innerWidth, window.innerHeight); bunker = new Bunker(200, 50); } function draw() { background(0); bunker.show(); } function keyPressed() { bunker.move(10,0); } function Bunker(x, y){ var v = createVector(x, y); this.show = function(){ noStroke(); fill(0, 100, 0); beginShape(); vertex(v.x, v.y); vertex(v.x+8, v.y); vertex(v.x+8, v.y-8); vertex(v.x+16, v.y-8); vertex(v.x+16, v.y-16); vertex(v.x+24, v.y-16); vertex(v.x+24, v.y-24); vertex(v.x+90, v.y-24); vertex(v.x+90, v.y-16); vertex(v.x+98, v.y-16); vertex(v.x+98, v.y-8); vertex(v.x+106, v.y-8); vertex(v.x+106, v.y); vertex(v.x+114, v.y); vertex(v.x+114, v.y+60); vertex(v.x+90, v.y+60); vertex(v.x+90, v.y+52); vertex(v.x+82, v.y+52); vertex(v.x+82, v.y+44); vertex(v.x+74, v.y+44); vertex(v.x+74, v.y+36); vertex(v.x+40, v.y+36); vertex(v.x+40, v.y+44); vertex(v.x+32, v.y+44); vertex(v.x+32, v.y+52); vertex(v.x+24, v.y+52); vertex(v.x+24, v.y+60); vertex(v.x, v.y+60); endShape(CLOSE); } this.move = function(dX, dY) { v.add(dX,dY); } } I modified the code so that every vertex coordinate is relative to the position vector of the bunker :) when you press any key, the bunker moves 10 pixels to the left
@timmellis50387 жыл бұрын
That helps a lot Dagara. Thank you. I can learn from just looking at your code here.
@DagaraLP7 жыл бұрын
no problem :) If you have any more questions just ask me I am always willing to answer them since its fun to me ^^
@aimenmansouri76487 жыл бұрын
man u the best
@krccmsitp28842 жыл бұрын
22:10 🌬🐈 😁
@cabbler7 жыл бұрын
Awesome
@NonTwinBrothers7 жыл бұрын
My brother said you look like Drake in disguise
@benchmarksx16507 жыл бұрын
Your whole channel is a freaking coding challenge
@unikitty4687 жыл бұрын
I haz flag! :3
@TheCodingTrain7 жыл бұрын
amazing!
@sanchitverma28925 жыл бұрын
wtf
@RoddyMcAskill7 жыл бұрын
Excellent, can you make the bottom flag joint ride up and down on the pole?