@dinorama13 Hey, i Just saw your comment and tried to find out why this doesn't work and I found out how to do this. (Hopefully you haven't worked it out yet). void setup() { size(500,500); background(128); smooth(); noLoop(); } void draw() {int centerX=width/2; int centerY=height/2; ellipse(centerX,centerY,70,70); } It has to be set out like that. int centerX=width/2; int centerY=height/2; has to be in void draw. Its because of the noLoop it didn't work. Happy to help. :)
@dinorama13 Also about the information about why it didn't work. Well, I kinda know. The noLoop() means that something that is drawed or something wont loop.(Means that it wont write again and again(So basically it wont be seen(Written))) So you need to put (int centerX=width/2; int centerY=height/2;) in the void draw() so that it will be looped.. I think that is why.
Hi just a quick question, how would i go about programming a liquid/shiny substance in processing? Its one of my exercises and i wouldn't have the faintest idea on how to do it :S
Thanks those tutorials are great they keep me when I am about to give up and I always learn more every I replay them. Thanks can't wait for the following.
i was wondering if i could ask you a small question, seeing how you know a lot about processing...what does "map" do (in plain english)? I tried to understand what it does by definition, but I can't quite explain it. I know it works, but I don't understand how to explain it works.
Easiest way to think of it - it's a ratio. If I had a point(x.y) on 100x100 square, and I needed to map that same point(exact location) on other squares with different dimensions even proportions. I could use the map statement to do that. The x value for a 100x100 square is some numer between 0 and 100. Lets say 10. The map statement will find a value for x between a new range. Let say a 200x200 square. x is now betweenn 0 and 200. x=20.
thank you so much. I got it perfectly, now let's hope i my professor gets it and believes I truly understand. thanks for everything and best of luck :D
Good tutorial again. I realy want to know why you use Processing with Midi. Because i bought FL because of your tutorials, i use Processing because of your tutorials (i always used Basic). I want to know why you use Processing to make music. :) Keep up the good work!
I'm not using it for music - I'm using to sync midi with graphic visuals. Similar to the kind of visuals you see in Windows media player or win amp, but a lot more true to the music. Not just beat detection driven graphic, Every element can be visualized - notes, velocity, pitch, tempo, panning...
I found your class today, and I watched all ...
I see that was last posted in 2009, did you quit? or there are more lessons?
Please send more tutorials ...
neokaia1 1 month ago
upload more please. This is great
bobbygD 1 month ago
Are you going to do any more tutorials for Processing? I'm interested in learning it and I've been looking at these good tutorials.
kassie2k4 8 months ago
void setup()
{ size(500,500); background(128); smooth(); noLoop();
}
int centerX=0;
int centerY=height/2;
void draw()
{ ellipse(centerX,centerY,70,70);
}
can someone please tell me why this piece of code is giving me a circle with center as (0,0).
i may be stupid but i really need to know why. :P
dinorama13 9 months ago
sebadam2007 8 months ago
@sebadam2007
thnks a lot!!
seemed like a simple enough program but just couldnt figure out why it wasnt woking!
well...i got it now so thnks agn!
dinorama13 8 months ago
@dinorama13 No problemo!
sebadam2007 8 months ago
@dinorama13 Also about the information about why it didn't work. Well, I kinda know. The noLoop() means that something that is drawed or something wont loop.(Means that it wont write again and again(So basically it wont be seen(Written))) So you need to put (int centerX=width/2; int centerY=height/2;) in the void draw() so that it will be looped.. I think that is why.
sebadam2007 8 months ago
@dinorama13 Also, int centerX=0; should've been int centerX=width/2; otherwise it wouldn't of worked.
sebadam2007 8 months ago
Hi just a quick question, how would i go about programming a liquid/shiny substance in processing? Its one of my exercises and i wouldn't have the faintest idea on how to do it :S
Cheers
nh3673 9 months ago
Very good clear tutorials, hope to see more posted.
Lakes57 11 months ago
great tutorials! thanks for uploading. they are helping me teach myself processing.
are there any more after "creating text" ? you talked about some other tutorials, but they dont seem to be posted.
jessemerrell 1 year ago
Taking a course on Processing at the moment and you are helping me alot!
I would really Love to see more tutorials.
VeraSvenningson 1 year ago
Vey well done tutorial series. I want to become a programmer now.
Would love to see more, if you are still planning to make.
Gggorm 1 year ago
I just finished your tutorials and they were great! Thank you for posting. Can't wait for the next ones.
boogiewheels 1 year ago
love the tuts any chance of the midi one soon? Really looking forward to it. thanks.
theacrossell 1 year ago
Thanks those tutorials are great they keep me when I am about to give up and I always learn more every I replay them. Thanks can't wait for the following.
Alexandreitsme 1 year ago
Thanks a lot! Where can I get more processing tutorials?
rheeoozeen 1 year ago
great series, excited for learning about midi and libraries, great teaching style
tomsgypsy 1 year ago
dvice for anyone usng this text. changed it to BookmanOldStyle-Bold 48, and it rks great... Thanks fo vid, great
keyboarddude1973 1 year ago
This has been flagged as spam show
More please, if you would be so kind.
theliftedloraxshow 1 year ago
watched all 11 again recently and learned more again!
baldmanwithBIGlegs 1 year ago
Great tutorials, very helpful! Can't wait to get into midi input!
When will we have that pleasure? :)
joaographic 1 year ago
@joaographic This month - You actually stumbled on these at a good time. I haven't uploaded any tutorials for processing in a while.
ste1438 1 year ago
@ste1438 Great timing then! hehe I'll be waiting..
joaographic 1 year ago
@ste1438 Very nice tutorials, the well defined steps are really easy to follow :).
You said 2 months ago that you'd upload more processing tutorials that month, but you haven't put them out yet. Any idea when you'll put more up?
Thanks
FlaireAZMR 1 year ago
Can you upload more? :D
itsmeohmeandme 2 years ago 10
hey all your tutorials have been really helpful to me for getting started with Processing. Thanks a bunch and hope to see the next tutorial soon! :)
eagledumb 2 years ago
I'm waiting for the next one. Thanks a lot.
halfvvvv 2 years ago
You can't imagine how helpful this has been. Can't wait for the next tutorial. By the way, how often are you uploading them?
stalker77 2 years ago
Not eften as I'd like to - It's real hard to find time. I'll be posting more though. I'll probably upload a few all at the same time.
ste1438 2 years ago
i was wondering if i could ask you a small question, seeing how you know a lot about processing...what does "map" do (in plain english)? I tried to understand what it does by definition, but I can't quite explain it. I know it works, but I don't understand how to explain it works.
stalker77 2 years ago
Easiest way to think of it - it's a ratio. If I had a point(x.y) on 100x100 square, and I needed to map that same point(exact location) on other squares with different dimensions even proportions. I could use the map statement to do that. The x value for a 100x100 square is some numer between 0 and 100. Lets say 10. The map statement will find a value for x between a new range. Let say a 200x200 square. x is now betweenn 0 and 200. x=20.
ste1438 2 years ago
thank you so much. I got it perfectly, now let's hope i my professor gets it and believes I truly understand. thanks for everything and best of luck :D
stalker77 2 years ago
any more processing tutorials?? that'd be great
silentdisturbance 2 years ago 3
Yeah - More to come:)
ste1438 2 years ago
Thanks!!!
yerman81 2 years ago
You deserve a medal or a cookie or something.
You help us non-computer-savvy-types so much.
Good work!
YAS62ftw 2 years ago
Good tutorial again. I realy want to know why you use Processing with Midi. Because i bought FL because of your tutorials, i use Processing because of your tutorials (i always used Basic). I want to know why you use Processing to make music. :) Keep up the good work!
TheSchetsofiel69 2 years ago
I'm not using it for music - I'm using to sync midi with graphic visuals. Similar to the kind of visuals you see in Windows media player or win amp, but a lot more true to the music. Not just beat detection driven graphic, Every element can be visualized - notes, velocity, pitch, tempo, panning...
ste1438 2 years ago
Thanks alot. Very helpful, and im looking forward to the next videos. Keep uploading!
Christoffer2640 2 years ago
you showed many good things thack can be done with text
barkly54 2 years ago
Nice video!
MasterJake777 2 years ago