-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shape: Add a "solid shadow" shape. (#3489)
This is an useful client shape to get "client side solid shadows".
- Loading branch information
Showing
2 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--DOC_GEN_IMAGE --DOC_HIDE | ||
local shape,cr,show = ... --DOC_HIDE | ||
|
||
shape.solid_rectangle_shadow(cr, 70, 70, 10, 5) | ||
show(cr) --DOC_HIDE | ||
|
||
shape.solid_rectangle_shadow(cr, 70, 70, 5, -10) | ||
show(cr) --DOC_HIDE | ||
|
||
shape.solid_rectangle_shadow(cr, 70, 70, 30, -30) | ||
show(cr) --DOC_HIDE | ||
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 |
26032bf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, it seems like this commit triggered a new warning at compile time (something about a noreturn)