List<MusePoint2D> targetPoints = GradientAndArcCalculator.pointsInLine(num,
new MusePoint2D(centerx, border.bottom()),
new MusePoint2D(centerx, border.top()));
for (MusePoint2D point : targetPoints) {
// Fly from middle over 200 ms
itemPoints.add(new FlyFromPointToPoint2D(
new MusePoint2D(centerx, centery),
point, 200));
}
}