I serached the forum but I couldn't find an answer to this.
I'm a newbie and I'm trying to load some random images at the center of the screen in full screen mode.
I got it working with some math but there's some method I can use to make the sketch cleaner?
I mean something like imageMode (CENTER)...
Hi,
I'm trying to make a simple class working. A 1px rectangle should be drwan at the center of the sketch but it starts from 0, 0. What's wrong with my code?
Hi,
I'm new to processing and programming and I'm reading "Programming interactivity" by Joshua Noble.
There's something I did not understand completely about public and private methods in a class.
Public methods can be accessed outside the class, private methods can only be accessed within the class so if I tried to call a private method outside the class I should get an error. Is that right?
So why if I call my private method dream() outside the class I do not get any error? Here's my code: