draw(new Canvas() {
@Override
public void paint(Graphics page) {
page.setColor(Color.white);
page.fillRect(0, 0, this.getWidth(), this.getHeight());
Vector2i tmp = new Vector2i();
int s = 1;
for (int x = 0; x < this.getWidth()/s; x++) {
for (int y = 0; y < this.getHeight()/s; y++) {
if (cmg.isLand(x-this.getWidth()/s/2+xshift, y-this.getHeight()/s/2+yshift)){
page.setColor(new Color(0, 150, 0));