Dianas python
def setup():
size(400, 400)
noStroke()
def draw():
background(255)
cx = width / 2
cy = height / 2
y= 10
x = 350
for i in range(y):
diametro = x - i * (x / y)
fill(200, 0, 0)
ellipse(cx, cy, diametro, diametro)
Comentarios
Publicar un comentario