Benutzer:Fritzbox/Baustelle
Zur Navigation springen
Zur Suche springen
Datum: 45. Woche des Jahres, Freitag, der 8. November 2024 | Zeit: 06:27 UTC | Die deutschsprachige Wikipedia verzeichnet derzeit 2.957.415 Artikel |
public class teox{ private Turtle abc; private Turtle abc1; private Turtle abc2; private Turtle abc3; public teox(){ abc= new Turtle(); abc.zumStart(500,500); abc1= new Turtle(); abc1.zumStart(300,300); abc2= new Turtle(); abc2.zumStart(200,200); abc3= new Turtle(); abc.setzeTempo(10); abc1.setzeTempo(10); abc2.setzeTempo(10); abc3.setzeTempo(10); abc3.zumStart(100,100); } public void macht(){ double z=Math.random(); int w=1000; int z1=0; int [] b; b = new int [w]; for (int i=0;i<w;i++){ z=Math.random(); //double z2=z*9; //int z1= (int) z2; if(z<=0.7){ z1=0; }else{ z1=8; } abc.setzeFarbe(z1); abc1.setzeFarbe(z1); abc2.setzeFarbe(z1); abc3.setzeFarbe(z1); abc.vor(10); abc1.vor(10); abc2.vor(10); abc3.vor(10); if(z<=0.5){ abc.drehe(90); abc1.drehe(90); abc2.drehe(90); abc3.drehe(90); b[i]=0; }else{ b[i]=1; } } abc.setzeRichtung(0); abc.setzeFarbe(z1); abc1.setzeRichtung(0); abc1.setzeFarbe(z1); abc2.setzeRichtung(0); abc2.setzeFarbe(z1); abc3.setzeRichtung(0); abc3.setzeFarbe(z1); for (int j=0;j<w;j++){ abc.vor(10); abc1.vor(10); abc2.vor(10); abc3.vor(10); if(b[j]<=0){ abc.drehe(90); abc1.drehe(90); abc2.drehe(90); abc3.drehe(90); } } abc.setzeFarbe(0); abc.zumStart((Math.random()*800),(Math.random()*800)); abc1.setzeFarbe(0); abc1.zumStart((Math.random()*800),(Math.random()*800)); abc2.setzeFarbe(0); abc2.zumStart((Math.random()*800),(Math.random()*800)); abc3.setzeFarbe(0); abc3.zumStart((Math.random()*800),(Math.random()*800)); } public void oft(){ for (int z=0;z<=10000;z++){ macht(); } } public void ja(){ double z=Math.random(); if (z>=0.5){ abc.drehe(-90); }else{ abc.drehe(90); } } public void fuck(){ double z=Math.random(); double d=60; for(int k=1;k<=100;k++){ if(0.75>=z&&z>=0.5){ d=d/(-1); } if(z<=0.5){ abc.fuelleKreis(z*10); }else{ abc.drehe(d); abc1.drehe(d); abc2.drehe(d); abc3.drehe(d); } abc.vor(z*10); abc1.vor(z*20); abc2.vor(z*30); abc3.vor(z); } } }