protected void fillWithDots(Collection<Point> col, Oval o, int n) {
   for (int i = 0; i < n; i++) {
     col.add(o.getRandomPoint(col, 30));
   }
 }