add some detail about bullet and o-bullet to slideshow docs

closes PR 12055
This commit is contained in:
Robby Findler 2011-07-19 09:46:28 -05:00
parent 3fa2cc0d67
commit 230f18a366

View File

@ -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]{