Chuva, vapor, velocidade g2 - fabrica-escola/artes-2o-ano-carmem-silva GitHub Wiki

# Código do grupo 2

def setup():  # (configuração) ajustes iniciais
    size(200, 200) # createCanvas (tamanho da área de desnho)
    background(200)  # fundo cinza 200, 200, 200

def draw():
    background(200)
    fill(255, 255, 0)  # equivale amarelo 'yellow'
    textSize(60)
    r = sin(frameCount / 60.0) * 50 + 50
    # text(r, 20, 40)
    ellipse(100, 100, r, r)

g2