summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2019-06-04 15:38:41 +0200
committerRicardo Wurmus <rekado@elephly.net>2019-06-04 15:38:41 +0200
commitdc59eecd6c7dfba4f5ad80d37cb10abd444fec30 (patch)
tree3e7d33e74e27e7733f513bb583b478143dee6d04
parentbf25c3964fd2d19d9942968a0e4ee6702c268fb6 (diff)
pict: circle: Add docstring.
* pict.scm (circle): Add docstring.
-rw-r--r--pict.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/pict.scm b/pict.scm
index 1d421c3..f12848c 100644
--- a/pict.scm
+++ b/pict.scm
@@ -653,6 +653,7 @@ the line color and line thickness."
#:key
(border-color "black")
(border-width 1))
+ "Return a circle with an outer diameter of SIZE."
(let* ((border-width (min border-width (/ size 2)))
(radius (exact->inexact
(/ (- size border-width) 2))))