Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : Visualise Real time long CSV datatype

$
0
0


here you can see how the crumbledness increases badly....



  1. //
  2. int myAttentionValue=0;
  3. float angle;
  4. float myAttentionValuePrev=-1000;
  5. float x=300, y=300;
  6. float dirx=.2, diry=.2;
  7. //
  8. // ---------------------------------------------------------------
  9. //
  10. void setup()
  11. {
  12.   // init
  13.   size(800, 600);
  14.   frameRate(13);
  15. } // func
  16. //
  17. //
  18. void draw()
  19. {
  20.   background(0);
  21.   float prevX= 300;
  22.   float prevY= 300;
  23.   if (myAttentionValue != myAttentionValuePrev) {
  24.     dirx=random(-1, 1);
  25.     diry=random(-1, 1);
  26.     x=300;
  27.     y=300;
  28.     //for (int i=0; i < myAttentionValue*1; i++)
  29.     for (int i=0; i < 200; i++)
  30.     {
  31.       strokeWeight(1);
  32.       stroke(255);
  33.       point (x, y);
  34.       float x1=x;
  35.       float y1=y;
  36.       if ( random ( 100 ) < myAttentionValue ) {
  37.         dirx=random(-1, 1)*myAttentionValue*.1;
  38.         diry=random(-1, 1)*myAttentionValue*.1;
  39.       }
  40.       x+=dirx;
  41.       y+=diry;
  42.       line (x1, y1, x, y);
  43.     }
  44.     //
  45.   }
  46.   //
  47.   myAttentionValuePrev = myAttentionValue;
  48.   if (frameCount % 2 == 0 ) {
  49.     myAttentionValue++;
  50.   }
  51.   if (myAttentionValue>=100)
  52.     exit();
  53.   println ("myAttentionValue  "+ myAttentionValue);
  54. } // func
  55. //
  56. // =====================================================================


Viewing all articles
Browse latest Browse all 1768

Trending Articles