by Alex Wolfe @ 7:06 am 24 January 2012
Doggleganger
Doggleganger is an app developed by the Pedigree Adoption Drive and NEC. It uses a simple face recognition system to match dogs in need of a home to the humans that use it.
The Artist is Present
Developed by pippinbar games, The Artist is Present is an old school Sierra-style recreation of the famous performance piece of the same name by Marina Abramovic. The user can relieve the experience including the incredibly long and frustrating line into the museum.
“Have the experience only a lucky few have ever had! Stare into Marina Abramovic’s eyes! Make of it what you will! Just like art!”
Nando Costa | The New America
Nando Costa is currently producing a “crowd sourced” animation through kickstarter.com. Each frame of the finished production is being laser engraved on a separate block of wood, which those who would like to contribute can purchase to help fund the project.
Comments Off on Alex Wolfe | 2012 | Looking Outwards1
by Alex Wolfe @ 6:53 am
import processing.opengl.*;
/*Alex Wolfe | Gauntlet*/
//Globals, adjust to edit nitpicky params
//Circles
int numCirc = 4;
int circMax = 100;
int circMin = 10;
//GridLines
int minRowSpace = 50;
int maxRowSpace = 100;
int minColSpace = 30;
int maxColSpace;
int minCols = 8;
int maxCols = 20;
int numrows, numcols;
int linewaver = 8;
int[] colSpace;
boolean[][] gridCheck;
//Lines
int minLines = 10;
int maxLines = 20;
RowLine[] grid;
void setup() {
size(600, 600, P2D);
background(255);
smooth();
strokeWeight(0.5);
strokeCap(ROUND);
noFill();
stroke(0);
//init colSpace grid
int j =0;
numcols = int(random(minCols, maxCols));
maxColSpace = width/numcols;
colSpace = new int[numcols];
for (int i=0; i
class RowLine{
PVector[] segPoints;
int rowStart;
// RowLine prev, next;
public RowLine(int rowStart1){
segPoints = new PVector[numcols];
rowStart=rowStart1;
if( (rowStart == 0) || (rowStart == height))
initEdgeLine();
else
initLine();
}
void initLine(){
int x,y;
y= rowStart;
for(int i=0; i
Comments Off on Alex Wolfe | 2012 | Gauntlet