You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
487 B
Java

package deepZoom.schedulers;
/**
* @author Zom-B
* @since 1.0
* @date 2009/05/05
*/
public class ModScheduler extends Scheduler {
@Override
protected void initImpl() {
super.clear();
for (int i = 0; i < numLayers; i++) {
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
add(new PriorityPoint(i, x, y, x % (y + 1)));
}
}
}
}
}