Formen symmetrisch vs. chaotisch ;-)

Ida

Mitglied
Hallo ihr Lieben ;-)
ich habe mal wieder eine kurze Frage. Und zwar habe ich ein Programm gemacht,
das Quadrate und Kreise zeichnet, und zwar relativ sortiert.
Wie kann ich das ganze "chaotisch verteilt" :-D über das ganze Panel darstellen?

Danke im Voraus und liebe Grüße, :)
Ida


[Java]

Random xValue = new Random();
Random yValue = new Random();

h = 30; //
b = 50; //

for( int count = 1; count <= 30; count++) //
{
x = 0 + xValue.nextInt( 500 ); //
y = 0 + yValue.nextInt( 400 ); //

if( x > 100 || y <= 300 )//
{
a.setColor( Color.BLACK ); //
a.drawRect( (int) x, (int) y, (int) b, (int) h ); //
}
else //
{
a.setColor( Color.WHITE ); //
a.drawOval( (int) x, (int) y, (int) b, (int) h ); //
}
}
}
}
[/Java]
 

Ida

Mitglied
mit relativ meine ich, dass momentan auf einer Seite die Quadrate und auf einer Seite die Kreise sind^^
Hab mich etwas komisch ausgedrückt...
 

discipulo

Mitglied
Java:
        Random xValue = new Random();
        Random yValue = new Random();
        
        h = 30; // 
        b = 50; //
        boolean kippe=true;
        for( int count = 1; count <= 30; count++) //
        {
            
            x = 0 + xValue.nextInt( 500 ); //
            y = 0 + yValue.nextInt( 400 ); //
            
            if(kippe)//
            {
                a.setColor( Color.BLACK ); //
                a.drawRect( (int) x, (int) y, (int) b, (int) h ); 
                kippe=false;
            }
            else
            {   
                a.setColor( Color.WHITE ); //
                a.drawOval( (int) x, (int) y, (int) b, (int) h ); //
                kippe=true;
            }
        }
    }
}
Dann hast du von beiden die Hälfte.
 
Zuletzt bearbeitet:

Ähnliche Java Themen

Neue Themen


Oben