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

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

def render():
    ...
    # midfield line (as net) - composed from couple of small rectangles
    for y in range(NET_LENGTH // 2, HEIGHT, NET_LENGTH * 2):
        draw_rectangle(
            WIDTH // 2 - 1,
            y,
            WIDTH // 2 + 1,
            y + NET_LENGTH)

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