ɹןqɯnʇtumblr

  • Archive
  • RSS
  • Ask me anything
“Recursive circles squares”
View Separately

“Recursive circles squares”

    • #processing
    • #squares
    • #circles
    • #ellipse
    • #gif
    • #anim
    • #animation
    • #animated gif
  • 3 weeks ago
  • 30
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“From Rooster To Cricket”

Es el remix del péndulo con unos ¨tweaks¨.
View Separately

“From Rooster To Cricket”

Es el remix del péndulo con unos ¨tweaks¨.

    • #Processing
    • #ellipse
    • #genart
    • #generative
    • #sine
    • #function
    • #trigonometry
    • #angles
    • #exponential
    • #math
    • #gif
    • #animated
  • 2 months ago
  • 11
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“Sine way.”
View Separately

“Sine way.”

    • #processing
    • #sine
    • #sinewave
    • #ellipses
    • #p5
    • #gif
    • #endless
    • #endlessgif
  • 2 months ago
  • 2
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“Sacred Carousel”
View Separately

“Sacred Carousel”

    • #processing
    • #radians
    • #angle
    • #sine
    • #cosine
    • #lines
    • #trig
    • #geometria
    • #geometry
    • #gif
    • #animation
    • #animated gif
  • 2 months ago
  • 15
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“Perlin grid”
Pop-upView Separately

“Perlin grid”

    • #processing
    • #perlin noise
    • #perlin
    • #grid
    • #gif
    • #animation
    • #lines
    • #lineas
  • 3 months ago
  • 30
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“Trigger line”.
I’m getting sick of it, i’ll just move on..
Pop-upView Separately

“Trigger line”.

I’m getting sick of it, i’ll just move on..

    • #lines
    • #waves
    • #random
    • #randomness
    • #sine
    • #perlin
    • #noise
    • #ruido
    • #perlin noise
    • #gif
  • 7 months ago
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“Perlin Waves”
View Separately

“Perlin Waves”

    • #gif
    • #noise
    • #perlin
    • #perlin noise
    • #processing
    • #coding
    • #lines
    • #fog
    • #smoke
    • #organic
    • #generative art
    • #generative
  • 7 months ago
  • 8
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
¨Pin Light of no return¨.
View Separately

¨Pin Light of no return¨.

    • #geometry
    • #geometría
    • #noise
    • #ruido
    • #perlin
    • #perlin noise
    • #gif
  • 7 months ago
  • 1
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
“Not so much noise”
Pop-upView Separately

“Not so much noise”

    • #chaos
    • #gif
    • #noise
    • #order
    • #perlin
    • #perlin noise
    • #random
    • #processing
    • #generative art
  • 7 months ago
  • 5
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
In the quest for the golden ratio; “Spiralaxy”.
Created w/Processing.
Pop-upView Separately

In the quest for the golden ratio; “Spiralaxy”.

Created w/Processing.

    • #gif
    • #processing
    • #generative art
    • #galaxy
    • #golden ratio
    • #pi
    • #ellipse
  • 8 months ago
  • 7
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
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/
Pop-upView Separately

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/

    • #Processing
    • #Shapes
    • #caos
    • #chaos
    • #figuras
    • #noise
    • #recursions
    • #recursive
    • #recursivity
    • #shape
    • #gif
  • 9 months ago
  • 38
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
Visual experiment w/Processing Language; &#8220;Amanecido For the Lines&#8221;.
code:
//// 22 Ago 2012
//// Berti Burquez
//// &#8220;For the lines&#8221;
void setup(){
  size(840,520);  
  background(245);
  smooth();
  strokeWeight(.2);
}
void draw(){  
   for(int i=0; i&lt;1; i++){                ///&#8212;&#8212;&#8212;&#8212;&#8212; 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&#8230;
    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.
Pop-upView Separately

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.

    • #generative art
    • #lines
    • #processing
    • #gif
  • 9 months ago
  • 4
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
Me tiraron rayos X.
View Separately

Me tiraron rayos X.

    • #portrait
    • #radiografia
    • #radiography
    • #rayos x
    • #retrato
    • #tomografia
    • #tomography
    • #x rays
    • #gif
  • 1 year ago
  • 4
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
Quiero, necesito hacer ejercicio.
View Separately

Quiero, necesito hacer ejercicio.

    • #punch out
    • #nes
    • #nintendo
    • #work out
    • #resistencia
    • #endurance
    • #rocky
    • #gif
  • 1 year ago
  • 10
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
balglo mingwar
Pop-upView Separately

balglo mingwar

    • #gif
    • #global warming
    • #red
  • 1 year ago
  • 2
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
Page 1 of 2
← Newer • Older →

Logo

Top

I Dig These Posts

See more →
  • Photo via septagonstudios

    Victor Calahan

    WISHBONES
    Photo via septagonstudios
  • Photo via geometrydaily

    #442 Seismic squares – A new minimal geometric composition each day

    Photo via geometrydaily
  • Photo via zeroing

    Dmitry Doronin

    Photo via zeroing
  • Photo via zeroing

    Solve Sundsbo

    Photo via zeroing
  • RSS
  • Random
  • Archive
  • Ask me anything
  • Mobile
Effector Theme by Pixel Union