Skip to content

Instantly share code, notes, and snippets.

@MisterE123
MisterE123 / ball.py
Last active January 5, 2021 21:50
ball
# Type your text here
from math import *
from kandinsky import*
scr_w = 320
scr_h = 222
ball = (5,10,-1,-1)
#this is (pos x,pos y, move x, move y)
def draw_ball(ball):
fill_rect(ball[0],ball[1],10,10,color(255,0,0))
from math import *