Skip to content

Instantly share code, notes, and snippets.

View zygisx's full-sized avatar

Žygimantas Gatelis zygisx

  • MobileLife
  • Vilnius, Lithuania
  • X @zygis_
View GitHub Profile
import processing.core.*;
public class JiyuuRakka extends PApplet{
Ball b1;
public void setup(){
size(200, 200);
b1 = new Ball(random(width), random(0,20));
b1.setHeight(height);
}