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.
19 lines
382 B
Python
19 lines
382 B
Python
11 months ago
|
from gasp import *
|
||
|
#The below link will give you a total understanding of Coordinate Plan
|
||
|
# https://www.splashlearn.com/math-vocabulary/geometry/coordinates
|
||
|
|
||
|
begin_graphics()
|
||
|
|
||
|
Circle((350,255),100)#This cirecle represent head
|
||
|
Circle((300,255), 20) #This circle represent left eye
|
||
|
Circle((370,260),20) #This circle represent left eye
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
update_when("key_pressed")
|
||
|
|
||
|
end_graphics()
|