From 6aad6bd0bdb1458a785ee426d036a7e98fe63775 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 4 Jun 2019 15:40:02 +0200 Subject: pict: triangle: Add docstring. * pict.scm (triangle): Add docstring. --- pict.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pict.scm b/pict.scm index de66fb3..2eb7db6 100644 --- a/pict.scm +++ b/pict.scm @@ -632,6 +632,9 @@ accepted to override the line color and line thickness." #:key (border-color "black") (border-width 1)) + "Return an isosceles triangle with width W and height H. The keys +BORDER-COLOR (a string) and BORDER-WIDTH (a number) are accepted to +override the line color and line thickness." (polygon `((0 . ,h) (,w . ,h) (,(/ w 2) . 0)) -- cgit v1.2.3