Talk:love.graphics.circle
Table input:
Is it possible to add the table input like:
function love.draw()
love.graphics.setColor(1, 1, 1)
local circle1 = {"fill", 300, 300, 50, 100}
love.graphics.circle(circle1) -- Draw white circle with 100 segments.
love.graphics.setColor(1, 0, 0)
local circle2 = {mode="fill", x=300, y=50, radius=50, segments=5}
love.graphics.circle(circle2) -- Draw red circle with five segments.
end