awesome/tests/examples/gears/shape/arc.lua

11 lines
212 B
Lua
Raw Normal View History

2016-08-02 07:04:38 +02:00
local shape,cr,show = ... --DOC_HIDE
shape.arc(cr,70,70, 10)
show(cr) --DOC_HIDE
shape.arc(cr,70,70, 10, nil, nil, true, true)
show(cr) --DOC_HIDE
shape.arc(cr,70,70, nil, 0, 2*math.pi)
show(cr) --DOC_HIDE