
Game of Life Test I
2 years ago
Quick test of 'game of life' animations made in processing. The shapes are built on a 2-d grid from the game and are assigned 3-d positions from color values.
photos on flickr:
flickr.com/photos/sansumbrella/sets/72157604252156191/
photos on flickr:
flickr.com/photos/sansumbrella/sets/72157604252156191/
-
Vimeo: About / Blog / Developers / Jobs / Community Guidelines / Community Forums / Help Center / Site Map / Merchandise
/ Get Vimeo


Previous Week
A quick working example:
import processing.opengl.*;
size(400,400, OPENGL);
background(255);
noStroke();
beginShape();
fill( 255, 0, 255 );
vertex( width*0.25, height*0.25 );
vertex( width*0.75, height*0.25 );
fill(127, 0, 255 );
vertex( width*0.75, height*0.75 );
vertex( width*0.25, height*0.75 );
endShape();