mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
10 lines
260 B
Lua
10 lines
260 B
Lua
local shape,cr,show = ... --DOC_HIDE
|
|
|
|
shape.partially_rounded_rect(cr, 70, 70)
|
|
show(cr) --DOC_HIDE
|
|
|
|
shape.partially_rounded_rect(cr, 70, 70, true)
|
|
show(cr) --DOC_HIDE
|
|
|
|
shape.partially_rounded_rect(cr, 70, 70, true, true, false, true, 30)
|
|
show(cr) --DOC_HIDE
|