2014/07/29
fortressinthesky さんへ
//.pde [Processing](http://processing.org/) //Contribution by A-na5.tumblr float theta = 0; float thetaStep = 0.1; int n = 50; int r = 160; float px, py, px_, py_; void setup() { size(500, 500); noStroke(); fill(255); } void...

fortressinthesky さんへ


//.pde [Processing](http://processing.org/)
//Contribution by A-na5.tumblr

float theta = 0;
float thetaStep = 0.1;

int n = 50;
int r = 160;
float px, py, px_, py_;

void setup() {
  size(500, 500);
  noStroke();
  fill(255);
}
void draw() {
  background(0);
  go_att();
  theta += thetaStep;
}

void go_att() {
  float a1 = 0.3*sin( theta );
  float ts = TWO_PI/n;
  float chao = 2;

  for (int y = 0; y < n; y++) {
    for (int x = 0; x < n; x++) {
      px = ( sin( y+px_ ) + sin( ts*y+py_ )    )/2;
      py = ( cos( y+px_ ) + cos( ts*y+py_+a1 ) )/2;
      px_ = px*chao;
      py_ = py*chao;
      fill( x*10,y*10,250 );
      ellipse( px*r+width/2,py*r+height/2, 1,1);
    }
  }
}
626 notes
  1. novaxzen reblogged this from novaxzen
  2. snort-ed-blog reblogged this from jellyfishtimes
  3. acidic-lies-blog1 reblogged this from jellyfishtimes
  4. davidbucio reblogged this from snowho3
  5. altglaskaleidoskop reblogged this from psychedelic-visuals
  6. marialdoza reblogged this from dripandtrip
  7. rightascension reblogged this from cindylikesgifs
  8. destiny-lost-me reblogged this from gedankenkotzee
  9. pizzasexandalcohol reblogged this from gedankenkotzee
  10. shy-alien-girl reblogged this from gedankenkotzee
  11. findestemps reblogged this from gedankenkotzee
  12. gedankenkotzee reblogged this from a-na5
  13. fairy-type-prince reblogged this from something-not-of-this-earth
  14. aengineering reblogged this from a-na5
  15. consum3dbywanderlust reblogged this from anxdss
  16. ceruleanray reblogged this from psychedelic-visuals
  17. meganxxmichele reblogged this from awkwardinclined
  18. awkwardinclined reblogged this from antique-s0ul
  19. antique-s0ul reblogged this from samesiestho
  20. samesiestho reblogged this from zoldazerdo
  21. zoldazerdo reblogged this from psychedelic-visuals
  22. thestraightcarpenter reblogged this from psychedelic-visuals
  23. keep-me-far-away-from-darkness reblogged this from soy-la-comegalletas
  24. soy-la-comegalletas reblogged this from seucontatinho
  25. a-altruista reblogged this from seucontatinho
  26. adora-vel-psicose reblogged this from seucontatinho
  27. a-na5 posted this