hallo
ich soll bis nach den Ferien ein Weihnachtsprojekt abgeben und muss dafür eigene klassen schreiben.
ich bekomme immer Fehler in meinem Quelltext angezeigt und würde nun gerne wissen was hier alles falsch ist?
public class christmas extends World
{
/**
* Constructor for objects of class christmas.
*
*/
public christmas()
{
// Create a new world with 199*280 cells with a cell size of 1x1 pixels.
super(199, 280, 1); }
{
width=199;
height=280;
color=ColorGreen;
draw();
}
{
GreenfootImage im = new GreenfootImage(width, height);
im.setColor(color);
int[] x_coord = {0, 0 , width, width, (width/3), (width/3), width-10,width -10,(width/3),(width/3)};
int[] y_coord = {height, 0, 0, (height/4), (height/4),(height/2), (height/2), height - 30, height - 30, height};
im.fillPolygon(x_coord, y_coord, x_coord.length);
setImage(im);
}
}
danke schonmal
ich soll bis nach den Ferien ein Weihnachtsprojekt abgeben und muss dafür eigene klassen schreiben.
ich bekomme immer Fehler in meinem Quelltext angezeigt und würde nun gerne wissen was hier alles falsch ist?
public class christmas extends World
{
/**
* Constructor for objects of class christmas.
*
*/
public christmas()
{
// Create a new world with 199*280 cells with a cell size of 1x1 pixels.
super(199, 280, 1); }
{
width=199;
height=280;
color=ColorGreen;
draw();
}
{
GreenfootImage im = new GreenfootImage(width, height);
im.setColor(color);
int[] x_coord = {0, 0 , width, width, (width/3), (width/3), width-10,width -10,(width/3),(width/3)};
int[] y_coord = {height, 0, 0, (height/4), (height/4),(height/2), (height/2), height - 30, height - 30, height};
im.fillPolygon(x_coord, y_coord, x_coord.length);
setImage(im);
}
}
danke schonmal