NAVIGATE / SPACE
Create a space and a method to navigate through it.
Carefully consider different possible types of space and unique ways to navigate.
Implement your software as a full-screen application in Processing.
You may work individually or with a partner.
There are five phases: research, software sketches, prototype, refinement /...
CONTEXT
+ Out of Control: The New Biology of Machines, Social Systems, & the Economic World by Kevin Kelly
+ Turtles, Termites, and Traffic Jams: Explorations in Massively Parallel Microworlds by Mitchel Resnick
+ Emergence: The Connected Lives of Ants, Brains, Cities, and Software by Steven Johnson
+ The Computational Beauty of Nature:...
Due 9 January 2008
1. Find an image at the Space Collective that you find fascinating.
2. Search for and find an image within the context of the Space Collective that has not been posted.
Research both images and verbally present your findings in class on the 9th. When you get your Space Collective account, make this information your...
// This is general, simple code for each element to be "aware"
// of every other element. Specifically, it draws a line from each
// node to every other node.
Node[] nodes;
void setup() {
size(600, 600);
nodes = new Node[6];
for (int i = 0; i < nodes.length; i++) {
nodes[i] = new Node(random(width),...
DESMA 152A/252A: Programming Media I
UCLA Department of Design | Media Arts
Professor C.E.B. Reas
TA Aaron Siegel
Time: Monday & Wednesday 9:00–12:00
Location: Broad Art Center, 4220
This course is a continued introduction to creating images and interaction within the context of software. Each student’s foundation in basic...
For this project, I want to make a visual software that analyzes the topics of autonomous agents + swarm intelligence. I did some poking around online for good algorithms and examples for both Processing and Flash (Actionscript is a bit more mushy compared to Processing ).
Meiotic Clusters
I particularly like the Meiotic Cluster project...