diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-06-04 15:38:41 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-06-04 15:38:41 +0200 |
commit | dc59eecd6c7dfba4f5ad80d37cb10abd444fec30 (patch) | |
tree | 3e7d33e74e27e7733f513bb583b478143dee6d04 | |
parent | bf25c3964fd2d19d9942968a0e4ee6702c268fb6 (diff) |
pict: circle: Add docstring.
* pict.scm (circle): Add docstring.
-rw-r--r-- | pict.scm | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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)))) |