You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
411 B
Python
21 lines
411 B
Python
11 months ago
|
from gasp import *
|
||
|
begin_graphics()
|
||
|
|
||
|
|
||
|
Circle((300, 200), 100)
|
||
|
Circle((240, 240), 15)
|
||
|
Circle((360, 240), 15)
|
||
|
Line((500, 300), (400,220))
|
||
|
Line((380, 260), (330,260))
|
||
|
Line((270, 260), (220,260))
|
||
|
Line((300, 260), (270, 200))
|
||
|
Line((300, 260), (340, 200))
|
||
|
Line((340, 200), (270, 200))
|
||
|
Arc((300, 190), 40, 225, 315)
|
||
|
Arc((420, 220), 30, 235, 510)
|
||
|
Arc((200, 220), 30, 60, 630)
|
||
|
|
||
|
|
||
|
update_when('key_passed')
|
||
|
end_graphics()
|