Computer aided Designs

I tried using the above pgm but all I got was one ellipse on the screen

@kendog400 - edited reply - this looks like the code you posted before. Just made a couple of changes to identify and resize your ellipses.


displayMode(FULLSCREEN)

function setup()
    radius=200
    angle=0
end

function draw()
    background(0)
    x=math.cos(angle)*radius
    y=math.sin(angle)*radius
    fill(0, 243, 255)
    ellipse(WIDTH/2,HEIGHT/2,16)
    fill(140, 246, 30)
    ellipse(x+WIDTH/2,y+HEIGHT/2,50)
    angle=angle+.02
end

That will hopefully help.