# -*- coding: cp1250 -*-
import livewires, math # math je modul pro matematick? funkce
DELKA=150 # jak bude dlouh? ??ra
def hvezda(stredX, stredY): # definice funkce
for uhel in range(0,360,5): # uhel bude postupne: 0,5,10,15,....
x=DELKA*math.cos(math.radians(uhel)) # matematika 9. t??dy
y=DELKA*math.sin(math.radians(uhel))
print uhel, x,y # pro kontrolu
livewires.move(stredX, stredY) # za??nat v?dy ze st?edu
livewires.draw(stredX+x,stredY+y) # to je to hlavn?
livewires.sleep(0.1) # spinkej
# --------- hlavni ??st programu ------------------------
livewires.begin_graphics()
hvezda(200,100) # vol?me funkci hv?zda
livewires.sleep(1) # spinkej
livewires.end_graphics()# kon?i
Tohle m? zaujalo a cht?l bych ud?lat ka?dou ?aru jin? barvy. Nejde teda n?jak rozli?ovat sud? a lich? ??sla?
n?co ve smyslu
if sude:
set_colour(Colour.red)
elif liche:
set_colour(Colour.blue)