I couldn't thank you enough, Daniel, for all this content. You're a great teacher and seem like a great guy in general and for guys like me who can't read this is priceless material. You classes are not boring, accessible yet complete and it's blowing my mind that one can access all that, for free. Tip of the hat to you, sir.
where is processing used? this is programming language? thought it was a verb (edit) oddly enough, posting my reply returned error: "n is undefined" What The?!
Hi .Daniel . thanks for all processing video lessons. I have one ask for you . how can we create textBox with processing? can you take a video for this.
Hi Dan. Can you make a video explaining how to import libraries? I saw the help section in processing, but I cannot follow. I'm trying to import UnfoldingMaps
What the best way in teaching myself when reading the reference on the website. I find my self jumping from one syntax to another but not accurately understanding and implementing the code correctly. Of course since you already learned it it is easier to learn it hands on. How can i understand the written content rather than asking other people what does it mean everytime? Please and thank you
Hi Daniel! Before anything thanks again for your videos! You're really an excellent teacher. After watching all previous ones I feel like offering you a couple of beers :) The reason why I ended up here is because of Arduino, at the beginning I just wanted to plot some graphs.. but actually your lessons are an amazing complement, like your video about class and objects. I was wondering if you have any video about Arduino&Processing and how they can comunicate. It would be awesome and it will bring many Arduino fans to Processing world. Thanks again for all your time and efforts!!
+David Rodriguez Codina I will definitely consider it, I am a little physical-computing-phobic, but I should try to get over it! I am planning some raspberry pi tutorials soon too.
@@TheCodingTrain I've watched the one had uploaded few months back. Please do film Arduino content videos, if you can, and as David R. said how Arduino and Processing can communicate. I am actually trying to make something combing those two, and it would be a greaaat help!
Hi Daniel. First I want to congratulate you for your classes. They very instructive and clear, and your long length videos worth to watch because you're always doing relevant explanations and digging deep into the knowledge. Thank you a lot for this! So, my question is: I'm using Processing 3.1.2 and some libraries aren't availiable is that correct (the UnfoldingMaps library for example)? Can I use it somehow? Another problem is that i'm not getting the desired results by using Strings. My Processing is not displaying the characters. I've wrote exactly your code but I only see a black screen as result and when I'm executing the following command line: println(PFont.list()); I'm getting this error message ( Type String[ ] of the last argument to method println(Object...) doesn't exactly match the vararg parameter type. Etc...). Thank you so much! I hope you can help me.
Is it possible to do a typewriter effect? Let's just say we have a string and I want to animate it in a way, so that the characters are shown individually after a certain amount of time/ a second or so.
@Marian Sandaltzopoulou : You can find "interpolate home" (together with a huge amount of interesting stuff) here : learningprocessing.com/exercises/chp17/exercise-17-10-interpolate-home
How can I delete the text from the screen? I made a flappy bird game but i want text on it saying "Press ENTER to start the game!" and when they click Enter delete the text and start the game (started = true;) i already have a boolean started and in draw its checking if its started and so on i just need to know how to delete the text. BTW you are AWESOME! I really enjoy watching your videos especially coding challenges!
You didn’t notice 2 mins in when he said println(s) ? Also the language is arbitrary. The lesson is the important part. You can apply the knowledge to any language.
Just set your text's y position to a variable and adjust it. For example - float textY = 180; String words = ("moving text"); void setup () { size (200, 200); } void draw () { background (0); text (words, 100, textY); textY -= 1; } That code will make the words 'moving text' go up on the screen. Mess with the variables a bit to get exactly what you need, but I hope I have you a start. Good luck!
You are my hero. You're teaching me the stuff I need to know for my SENG 100 class that my professor won't explain to us.
I couldn't thank you enough, Daniel, for all this content. You're a great teacher and seem like a great guy in general and for guys like me who can't read this is priceless material. You classes are not boring, accessible yet complete and it's blowing my mind that one can access all that, for free. Tip of the hat to you, sir.
I realize this video is four years old but you just saved my life, thank you so much for this tutorial!!!
I'm really blown away by the power that processing offers, to the ones initiated in it.
I know im late, but what? lol @FH - 12ZZ - John Fraser SS (2652)
As allways, great class. I'm following your processing and, more generally, your programation course and they are amazing.
You are a great teacher
Great job! Thanks for these awesome videos. I have been learning Processing for a year. These videos made it a lot easier.
To be or not to be == 2b || !2b
= ?
2 * (b || !b)
So, true?
I hate my school, i hate studying computer science, i hate processing but you've made it a little bit bearable. Thanks:)
OMG! I love this guy!
Thank you so much to upload these great Tutorials!!!
Thank god for your tutorials.
HOW COME THIS IS UNLISTED in the Learning Processing playlist? I only found out this gem through the book :D
where is processing used? this is programming language? thought it was a verb (edit) oddly enough, posting my reply returned error: "n is undefined" What The?!
very good explanation, a query is possible to achieve the rotation of the text for example on axis y, and if possible as would be done
Wooow awesome lecture....my favourite lecturer 😊
Daniel, hello, Is there a way to use an image as a texture for text? Thank you
but what if what I want to print a string thats too long to fit on one line on my code editor
Hi! I'm wondering where I can find the examples you gave in the video. That'll be really helpful to me. Thanks thanks.
thanks so much..what would I need to do to limit the amount of text that can be put in a text box? Please help
If(text.length>number) nope;
15:47 "Trebuchet is so awesome"
How do you combine int and string in one line of text
The Bob Ross of Coding!
How would I go about actually having the users keystrokes make text appear in the program
Hi .Daniel . thanks for all processing video lessons.
I have one ask for you .
how can we create textBox with processing?
can you take a video for this.
Hi Dan. Can you make a video explaining how to import libraries? I saw the help section in processing, but I cannot follow. I'm trying to import UnfoldingMaps
What the best way in teaching myself when reading the reference on the website. I find my self jumping from one syntax to another but not accurately understanding and implementing the code correctly. Of course since you already learned it it is easier to learn it hands on. How can i understand the written content rather than asking other people what does it mean everytime? Please and thank you
What great apps can perform what you are showing us now? Please and thank you
Hi Daniel! Before anything thanks again for your videos! You're really an excellent teacher. After watching all previous ones I feel like offering you a couple of beers :) The reason why I ended up here is because of Arduino, at the beginning I just wanted to plot some graphs.. but actually your lessons are an amazing complement, like your video about class and objects. I was wondering if you have any video about Arduino&Processing and how they can comunicate. It would be awesome and it will bring many Arduino fans to Processing world. Thanks again for all your time and efforts!!
+David Rodriguez Codina I will definitely consider it, I am a little physical-computing-phobic, but I should try to get over it! I am planning some raspberry pi tutorials soon too.
@@TheCodingTrain I've watched the one had uploaded few months back. Please do film Arduino content videos, if you can, and as David R. said how Arduino and Processing can communicate. I am actually trying to make something combing those two, and it would be a greaaat help!
Hi Daniel. First I want to congratulate you for your classes. They very instructive and clear, and your long length videos worth to watch because you're always doing relevant explanations and digging deep into the knowledge. Thank you a lot for this! So, my question is: I'm using Processing 3.1.2 and some libraries aren't availiable is that correct (the UnfoldingMaps library for example)? Can I use it somehow? Another problem is that i'm not getting the desired results by using Strings. My Processing is not displaying the characters. I've wrote exactly your code but I only see a black screen as result and when I'm executing the following command line: println(PFont.list()); I'm getting this error message ( Type String[ ] of the last argument to method println(Object...) doesn't exactly match the vararg parameter type. Etc...). Thank you so much! I hope you can help me.
I've found out. I have to put the font inside data folder!
oh, glad to hear!
Is it possible to do a typewriter effect? Let's just say we have a string and I want to animate it in a way, so that the characters are shown individually after a certain amount of time/ a second or so.
@@MuhammadAhmed-qh7ut Okay, Thank you for the reply!🥰
@@MuhammadAhmed-qh7ut It doesn't matter, thank you for replying🤣👍
How can i get all the vertex from text like with javascript textToPoints(); but in processing
Hi Daniel. With textWidth,
I have Not a Number when the text contains a space.
It's normal?
Have you uploaded the code, for the examples shown(string basics && interpolate home), somewhere?
@Marian Sandaltzopoulou : You can find "interpolate home" (together with a huge amount of interesting stuff) here :
learningprocessing.com/exercises/chp17/exercise-17-10-interpolate-home
How can I delete the text from the screen? I made a flappy bird game but i want text on it saying "Press ENTER to start the game!" and when they click Enter delete the text and start the game (started = true;) i already have a boolean started and in draw its checking if its started and so on i just need to know how to delete the text. BTW you are AWESOME! I really enjoy watching your videos especially coding challenges!
Jonathan1506 maybe, i did it by simply doing "theText = "";" so im just clearing the string so the text is still there bt it doesnt show anything
This is what i want !!! Thanks!
i have integer values and i want to draw them on the screen as text, but i don't know how to convert the number to text. How can i do it?
In Processing you can use int()!
would it be safe to assume that all of Java syntax/functions (even the stuff unrelated to strings?) work the same way in processing?
+Artur Karlov Indeed it's true!
cool, thanks! Processing is like a gateway programming language to heavier programming languages))
It took me 6 mins of video to realize you were working on java and me on python lol
You didn’t notice 2 mins in when he said println(s) ? Also the language is arbitrary. The lesson is the important part. You can apply the knowledge to any language.
is this javascirpt? im new
8:21 chyaor at
how to use other language such as Arabic or bangla.....?
how to make random string
thanks but i want to learn how to make text move vertically, thanks!
Just set your text's y position to a variable and adjust it. For example -
float textY = 180;
String words = ("moving text");
void setup ()
{
size (200, 200);
}
void draw ()
{
background (0);
text (words, 100, textY);
textY -= 1;
}
That code will make the words 'moving text' go up on the screen. Mess with the variables a bit to get exactly what you need, but I hope I have you a start. Good luck!
thank you!
How do you clear a text? :( help
What do you mean by cleaning?
i love Georgia too :')
02:00