“Recursive circles squares”
“From Rooster To Cricket”
Es el remix del péndulo con unos ¨tweaks¨.
“Sine way.”
“Sacred Carousel”
“Perlin grid”
“Trigger line”.
I’m getting sick of it, i’ll just move on..
“Perlin Waves”
¨Pin Light of no return¨.
“Not so much noise”
In the quest for the golden ratio; “Spiralaxy”.
Created w/Processing.
Experimenting w/Processing; “Chaos”
Gave a little tweak to the code extracted from chapter 1 of the book ¨Algorithms for visual design¨.
void setup(){size(848,520);
smooth();}
void draw(){updateMe();}
void updateMe(){
for(int x=0; x<width; x+=10)
for(int y= 0; y<height; y+=10){
beginShape();
vertex(x+random(-20.,30.),y+random(-20.,30.));
vertex(x+random(-20.,30.)+10, y+random(-20.,30.));
vertex(x+random(-20.,30.)+10, y+random(-20.,30.)+20);
vertex(x+random(-20.,30.), y+random(-20.,30.)+20);
endShape(CLOSE);
}
}
You can run the program here, just copy paste… http://sketch.processing.org/
Visual experiment w/Processing Language; “Amanecido For the Lines”.
code:
//// 22 Ago 2012
//// Berti Burquez
//// “For the lines”
void setup(){
size(840,520);
background(245);
smooth();
strokeWeight(.2);
}
void draw(){
for(int i=0; i<1; i++){ ///————— Line roots
line(i+10,10,random(width),random(height)); // Left upper
line(width-10,10,random(width),random(height)); // Right upper
line(10,height-10,random(width),random(height)); // etc…
line(width-10,height-10,random(width),random(height));
line(width/2,height-10,random(width),random(height));
line(width/2,10,random(width),random(height));
}
}
void clearBackground(){
background(255);
}
void mousePressed() { // Reset
clearBackground();
}
Aquí lo puedes visualizar, solo copia y pega el código en la hoja. http://sketch.processing.org/
Con click del mouse se borra y comienza de nuevo.
Me tiraron rayos X.
Quiero, necesito hacer ejercicio.
balglo mingwar







