Search
Your search returned 10 results.
Posted on Dec 20th, 2007
This is my first attempt at a simple project in processing. Overall I think the language is pretty nice since it simplifies many of the concepts associated with graphics programming in Java, like animations (via frames), accelerate graphics, bezier curves (and others), etc.
Posted on Dec 21st, 2007
Another small demo in processing taking advantage of the object-oriented nature of the language. In this demo, each wave is an object, with its own independent amplitude and wavelength.
Posted on Dec 21st, 2007
Processing provides a few variables to easily get the mouse's current x and y coordinates, namely mouseX and mouseY. This demo uses a simple calculation (based on the dist function) to draw the blocks in different locations as the mouse moves.
Posted on Dec 21st, 2007
More reactive blocks in processing, this time using trigonometric functions to create seek behavior.
Posted on Dec 22nd, 2007
Processing simulation of multiple attractive forces using vector mathematics.
Posted on Dec 25th, 2007
First attempt at a quasi-futuristic clock in processing. The coolest feature I think is the outermost ring, which is the current percentage of the day that has passed.
Posted on Dec 26th, 2007
A basic implementation of a (constrained) random walk in four directions, using a variable distance of 5 or 10 pixels.
Posted on Dec 27th, 2007
Another random walk applet, this time using color intensities to represent the number of times each location has been visited in the walk. In every frame, ten locations are visited using the random walk algorithm in four directions.
Posted on Dec 28th, 2007
A dynamic processing applet using mouse input for bezier curve calculations.
Posted on Dec 28th, 2007
Applet using a single square to produce interesting web-like images, via a trigonometric motion algorithm.