browse OpenProcessing

pixel movement
Little Test
Particle spring
browse all>

browse the portfolio of Myer Nore

Little Test
Concerning Perlin Increment Rates
Perlin Triangles
Night Rider
see more>
Little Test

Little Test

uploaded by
Myer Nore
offline, this gives you a little visualization of the last twelve processing processing sketches on openprocessing.org that have had pictures attached. this is a little test to see if it works online without special security permissions.
Embed Code
Fave'd by 3 users
Sketch added to your favorites in your portfolio.
You must login/register to add this sketch to your favorites.

comments

source code

Comments

subpixel
08 Feb 2010, 08:09
Ka-pow! Yes! I see a list of recent openProcessing sketches. *clap* *cheer*
subpixel
08 Feb 2010, 08:12
And better than that - clicking on them redirects the browser to the appropriate page. :o)
subpixel
08 Feb 2010, 08:43
Suggestions:

(*) assume (enforce) height and width:
int wd = 100;
int ht = 100;

(*) replace loadImage() with requestImage():
// Constructor
this.thumbnail = requestImage( thumbnail, "jpg" );

// display()
if (thumbnail.width > 0) image(thumbnail, x, y, wd, ht);
else text("Loading image...", x, y, 95, 100);
subpixel
28 Jun 2010, 10:53
Bug in draw():
if( h_total > width ) does not properly catch the end of the row; h_total==width happens to occur (since the sketch's width is an even multiple of 200), hence an extra unseen column of links is being "drawn" off the right hand side.

Suggestion:
if ( h_total > width - 2 * opa.wd )
You need to login/register to comment.