Hallo ich möchte gerne eine neue Farbe selbst erstellen für den Hintergrund eines Labyrinths,
Muss ich um die Hintergrund Farbe zu kreieren eine neue Klasse erstellen. Oder reicht es wenn ich die untere Methode dazu abändere ?
Liebe Grüße Fats
private static void drawMaze (java.awt.Graphics graphics, MazeArray mazeArray
{
int width = mazeArray.getWidth ();
int height = mazeArray.getHeight ();
/* draw rectangular background frame for maze */
graphics.setColor (java.awt.Color.BLACK);
int rectHeight = getRectHeight (height);
int rectWidth = getRectWidth (width);
graphics.fillRect (0,0, rectWidth, rectHeight);
/* draw maze fields */
int y = 0;
while (y < height)
{
int x = 0;
while (x < width)
{
drawMazeField (graphics, mazeArray.fields [x][y]);
x++;
}
Muss ich um die Hintergrund Farbe zu kreieren eine neue Klasse erstellen. Oder reicht es wenn ich die untere Methode dazu abändere ?
Liebe Grüße Fats
private static void drawMaze (java.awt.Graphics graphics, MazeArray mazeArray
{
int width = mazeArray.getWidth ();
int height = mazeArray.getHeight ();
/* draw rectangular background frame for maze */
graphics.setColor (java.awt.Color.BLACK);
int rectHeight = getRectHeight (height);
int rectWidth = getRectWidth (width);
graphics.fillRect (0,0, rectWidth, rectHeight);
/* draw maze fields */
int y = 0;
while (y < height)
{
int x = 0;
while (x < width)
{
drawMazeField (graphics, mazeArray.fields [x][y]);
x++;
}