pygame.examples.stars

Se hai installato pygame pip install pygame puoi eseguire il codice originale scrivendo le istruzioni import pygame.examples.stars pygame.examples.stars.main() Versione riarrangiata import random import math import pygame import sys WIN_SIZE = [800, 600] STARS_CENTER = [400, 300] NUM_STARS = 150 def init_star(): vel_MIN = 1.0 vel_MAX = 5.0 direzione = random.uniform(0, 2*math.pi) velocità = random.uniform(vel_MIN, vel_MAX) … Leggi tutto