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

Re : Visualise Real time long CSV datatype

$
0
0


chaos linewise


  1. //
  2. int myAttentionValue=0;
  3. float angle;
  4. //
  5. // ---------------------------------------------------------------
  6. //
  7. void setup()
  8. {
  9.   // init
  10.   size(800, 600);
  11.   frameRate(13);
  12. } // func
  13. //
  14. //
  15. void draw()
  16. {
  17.   background(255);
  18.   float prevX= 300;
  19.   float prevY= 300;
  20.   for (int i=0; i < myAttentionValue; i++) {
  21.     angle= radians(random(360));
  22.     float radius = random (myAttentionValue) ;
  23.     strokeWeight(2);
  24.     point (
  25.     300+radius*cos(angle),
  26.     300+radius*sin(angle)
  27.       );
  28.     strokeWeight(1);
  29.     line (300+radius*cos(angle), 300+radius*sin(angle), prevX, prevY);
  30.     prevX=   300+radius*cos(angle);
  31.     prevY=   300+radius*sin(angle);
  32.   }
  33.   if (frameCount % 2 == 0 ) {
  34.     myAttentionValue++;
  35.   }
  36.   if (myAttentionValue>=100)
  37.     exit();
  38.   // angle+=7;
  39.   println ("myAttentionValue  "+ myAttentionValue);
  40. } // func
  41. //
  42. // =====================================================================


Viewing all articles
Browse latest Browse all 1768

Trending Articles