import icons

my_circle = Circle(color='blue', width=20, height=20)
Line([(100,0), (0, 70)])
Line([(0,100), (100, 30)])
dog = icons.Dog(color='green',width=30, height=30, x=20, y=75)
icons.Home(rotation=15, width=40, height=40, x=80, y=25)
icons.Joint(color='green',width=30, height=30, x=80, y=75)
with animation():
    dog.color = 'red'
    dog.y = 20
    dog.x = 90
    my_circle. x = 90
    my_circle. y = 20

Adrian's dog and home

by ludwik

Created 4 years ago.