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

13 lines
280 B
Lua

local shape,cr,show = ... --DOC_HIDE
shape.rounded_bar(cr, 70, 70)
show(cr) --DOC_HIDE
shape.rounded_bar(cr, 20, 70)
show(cr) --DOC_HIDE
shape.rounded_bar(cr, 70, 20)
show(cr) --DOC_HIDE
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80