From 230f18a36610d3589c572bb80044243f1f0117d7 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 19 Jul 2011 09:46:28 -0500 Subject: [PATCH] add some detail about bullet and o-bullet to slideshow docs closes PR 12055 --- collects/scribblings/slideshow/slides.scrbl | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/slideshow/slides.scrbl b/collects/scribblings/slideshow/slides.scrbl index b2c8fbbec6..3113b6ef52 100644 --- a/collects/scribblings/slideshow/slides.scrbl +++ b/collects/scribblings/slideshow/slides.scrbl @@ -316,12 +316,25 @@ A width commonly used for layout.} @defthing[bullet pict?]{ -A filled bullet used by default by @racket[item].} +A filled bullet used by default by @racket[item]. + +It is either @racket[(t "\u2022")], if that character +is available in the font that @racket[t] uses, +or it uses an implementation similar to @racket[o-bullet], +but not hollow (using @racket[disk], not @racket[circle]). +} @defthing[o-bullet pict?]{ -A hollow bullet used by default by @racket[subitem].} +A hollow bullet used by default by @racket[subitem]. + +It's implementation is: +@racketblock[(baseless + (cc-superimpose + (circle (/ gap-size 2)) + (blank 0 gap-size)))] +} @defidform[client-w]{