Example #1
0
 @Override
 public void update() {
   vel.add(Point.frand(0.01, 0.01));
   vel.multiply(0.9);
   super.update();
 }
Example #2
0
 public Blob() {
   pos = Point.frand(400, 400);
   clip = new ClipRect(12, 12);
 }