Nauč se Python > Kurzy > Beginners course PyLadies > Final project I. > Coding game: Pong

Coding game: Pong – Řešení [0]

def render():
    ...
    # ball
    draw_rectangle(
    ball_coordinates[0] - BALL_SIZE // 2,
    ball_coordinates[1] - BALL_SIZE // 2,
    ball_coordinates[0] + BALL_SIZE // 2,
    ball_coordinates[1] + BALL_SIZE // 2)

Toto je stránka lekce z kurzu, který probíhá nebo proběhl naživo s instruktorem.