linkedIn live poster

int amount = 500; int [] a= new int[amount]; int [] b= new int[amount]; int [] d= new int[amount]; int t; void setup(){   size(1024, 768,P3D);   background(0);   noFill();   stroke(255); t = 5;  point();// must write here and write void point below   } void draw(){   background(0);   pushMatrix();   translate(width/2,height/2+500);   rotateY(frameCount/1000.0);// translate rate     for(int i = 0; i<amount; i++){//for… Read more linkedIn live poster