View allAll Photos Tagged generative

vertexshader - cubic line interpolation

Ethan Larkin (BFA 2023)

 

Printed Media

Generative art piece built with Processing. View the applet at justinlivi.net/dancingsine/

posting app soon; sound sensitive, 3D jamz. processing is boss.

i like this one

A generative typography inspired by stencil and grafitti art.

First results of a new generative art algorithm. Still experimenting with it (as always).

This is generated by letting 2000+ particles wander around, leaving a trail. They flock together based on a perlin noise map.

schoene neue kinder / subnormals ___exhibition / installation / music ___"gonzos coded remixed" ___generative graphic splatter

Generative painting - Made with Java/Processing.

 

Created for Processing Paris exhibition.

/*processingworkshop example by philip whitfield and martin fuchs, hyperwerk 08*/

 

float angle = 170;

float leng = 90;

 

PVector last;

float lastAngle = 0;

 

void setup(){

size(800, 650);

last = new PVector(width/2,height/2);

smooth();

background(255);

}

 

void draw(){

PVector dir;

stroke(0,80);

float pre = 1;

if(frameCount % 9 == 0 || frameCount % 7 == 0 || frameCount % 2 == 0){

pre = -1;

}

 

lastAngle += angle*pre;

dir = new PVector(sin(radians(lastAngle))*leng, cos(radians(lastAngle))*leng);

 

line(last.x, last.y, last.x+dir.x, last.y+dir.y);

last.add(dir);

}

 

void mouseClicked(){

last = new PVector(mouseX,mouseY);

}

 

void keyReleased(){

if(key == ' ')

save(day()+"_"+month()+"_"+year()+"__"+minute()+"_"+second()+".png");

if(key == 'c')

background(255);

}

 

voronoi smoothed

Generative pattern

generative design - compositions for a poster

Digital Patterns / Exploring Emergence

Future Learn Creative Coding Monash University

Week 2 / Sketch 05 / Iteration 05 / Screenshot from video

void-k.tumblr.com/post/88674621089/digital-patterns-explo...

1 2 ••• 57 58 60 62 63 ••• 79 80