5.1: Boolean Expressions - Processing Tutorial

preview_player
Показать описание
This video covers the very basics of a conditional statement and a boolean expression.

For More Processing Tutorials:

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

This is such an encouraging course. " you can code anything you want from now on". So so happy for that!

taebyun
Автор

Thank you so much Mr Daniel. Im just learning processing because i need it as a design student for my senior project which has interactive elements. Im already in the middle of the semester and your videos are giving me an amazing jumpstart to deal with this world of programming. You explain stuff brilliantly, keep it entertaining ALL the time, and constantly challenge your viewers and their imagination as well. You have perfected the art of teaching! :D Big fan here, keep up the great work :)

haleemulhassan
Автор

Wow, usually it takes me like 10 times to read something or listen to something so I can understand the problem. When I watch your videos I understand it immidietly .. this is amazing, you are an amazing teacher.

Mike-sbuc
Автор

A lot of respect for you Sir! I wish my university teachers could also clear all my concepts like this!

MahadKhaliq
Автор

I suffer a lot trying to understand what my professor does in class, and here I am, doing the programming class again, but now with this HUGE help that made me understand a semester thing in hours. RESPECT FOR THIS MAN.

camiladesa
Автор

I´m been trying to learn how to code for a long time without any succes until now.
Thanks a lot, Daniel!!!! you are a great great teacher!!

crisis
Автор

I really love how You teach. You make Learning so Easy and Fun. I enjoy Studying from You very much, and Your Little 'Jokes' Around (Like the pen...) Are very Sweet.

jimins_missing_height
Автор

Watching your tutorial videos for learning processing has been a great experience. I appreciate that you give coding examples through a visual context, as I myself is more of a visual learner.

robiecalong
Автор

I love your videos, Daniel. I have decided to study computer science at university this summer, and your videos really have helped learn about the basics of programming. Thank you

videofreak
Автор

AGAIN AMAZING VIDEO DUDE
KEEP GOING
THE CODE FROM THE LAST FEW SECONDS WHICH WERE TASK
float circleX=0;
void setup()
{
size(640, 360);
}
void draw()
{
background(50);
fill(225);
ellipse(circleX, 180, 24, 24);
circleX=circleX+1;
if(circleX>=640)
{
circleX=0;
}
}

samuilnikolov
Автор

You made it!!!! I started programming with Processing3. Also the videos you have at www.processing.org are wonderful.
Great teacher!!
Thanks a lot, Daniel!!!! You are the

I've seen so many videos of you that I can just address you by Daniel and not Mr. Shiffman! hahaha We are buddies now.

Thanks a lot, for real.

javiermartinezdevelasco
Автор

The only good thing going for me in my life is you, good sir. YOU ARE AMAZING! xD. Never stop these videos. Can you believe that thousands of people literally thousands even more around the globe is benefiting from this .

paladin
Автор

first of all, thank you very much from these great videos
this what I have learned from these series of videos till this point.

// declaring variables
float paintball;

// setup making
void setup() {
size(800, 400);
paintball = 0;
// background(50);
}
// drawing stuffs
void draw() {
background(50);
fill(255, 0, 0);
ellipse(paintball, 200, 30, 30);
paintball = paintball + 1;
if (paintball>200) {
background(255, 0, 0, 127);
fill(0, 255, 0);
ellipse(paintball, 200, 30, 30);
}
if (paintball>400) {
background(0, 255, 0);
fill(0, 0, 255);
ellipse(paintball, 200, 30, 30);}
if (paintball>600) {
background(0, 0, 255);
ellipse(paintball, 200, 30, 30);
}
if (paintball>=800) {paintball=0;
}
}

ehsanullahakbari
Автор

I know I'm late to your videos, but you're an excellent teacher. Not only do you explain things very well and are able to show everything, but you're very relatable and charismatic which (obviously) is great for teaching. Thank you for your hard work!

headlights-go-up
Автор

you're lovely! I've almost started to like coding. clear, simple and entertaining explanations, thank u!

pusji
Автор

I really like your lessons, certainly more interactive than the ones they pretend to drag at colleges. Well at mine. Love the way you keep it all unrefined, gives me kind of a comfortable vibe, wish we had teachers like you here. Anyway thanks for uploadin!

sandipbaidya
Автор

I have jumped ahead early in this course and tried to use a for statement in the draw function with little success. I am beginning to understand the difficulties and found it much easier to use the if statement and managed to get the ball to bounce off each side by creating a variable that changed the increment of circeX from positive to negative (e.g. circleX = circleX + increment (increment changes from 1 to -1 alternatively)).
I was a little impatient with this course at the beginning but now appreciate that its structure lends itself to transferring skills to other languages. Many thanks. I struggled with trying to teach myself programming for years but have made rapid progress with your course.

bernym
Автор

You are a marvellous teacher. So glad to have found your channel! 🙏🏼🙂🌱

pareshpandit
Автор

Your style of Teaching is Amazing
Love & Respect from Pakistan 🇵🇰

hummingmaths
Автор

your videos are great keep them up please, saving my grade in university !

konurozcan