Strange patterns with ellipse.

@Simeon Here is the ellipse command that should just draw the edge of the ellipse larger than the screen. I’m not sure what it’s doing here. It only does this with certain ranges of numbers.


displayMode(FULLSCREEN)

function setup()
end

function draw()
    background(40, 40, 50)
    noFill()
    stroke(255)
    strokeWidth(2)
    ellipse(WIDTH/2,HEIGHT/2,92000000)
end