hallo nochmal
ich hab hier einen quelltext:
ax1:=0;
ay1:=300;
repeat
e:=e-2;
Kreis.SetPos(ax1,ay1);
ax1:=ax1+20;
ay1:=ay1-e;
until ax1=200
repeat
e:=e-1;
ax1:=ax1+20;
ay1:=ay1-e;
until ax1>250
repeat
e:=e-1;
ax1:=ax1+20;
ay1:=ay1-e;
until
ax1>300;
repeat e:=e-2;
ax1:=ax1+20;
ay1:=ay1-e;
until ax1:=520
und versteh die änderung von ax1 und ay1, also die des kreises, nicht.
kann mir da jemand behilflich sein?