diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-22 07:21:26 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-22 07:30:57 -0400 |
commit | 7a2b8a54b9e637bc1ee3f13f567f1676089ef835 (patch) | |
tree | d1cc316d3928a98387f45d860eee94fb633c1e49 /doc/api.texi | |
parent | a700f36d804e9c6c64bdb4aa00bd7a039f3f553e (diff) |
graphics: path: Add flip-horizontal and flip-vertical procedures.
Diffstat (limited to 'doc/api.texi')
-rw-r--r-- | doc/api.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/api.texi b/doc/api.texi index 75d8b37..3329025 100644 --- a/doc/api.texi +++ b/doc/api.texi @@ -2329,6 +2329,14 @@ Rotate @var{painter} by @var{angle} radians. Scale @var{painter} by the scalar @var{x}. @end deffn +@deffn {Procedure} horizontal-flip painter +Flip @var{painter} horizontally. +@end deffn + +@deffn {Procedure} vertical-flip painter +Flip @var{painter} vertically. +@end deffn + @deffn {Procedure} pad pad-x pad-y painter Add @var{pad-x} and @var{pad-y} amount of empty space around @var{painter}. |