move the slideshow/pict library to its own collection

also, adjust all of the requires in the tree to point to the pict
collection

original commit: 9932ef33f77ab8bd9751568b4ef2d1b1e3cf4254
This commit is contained in:
Robby Findler 2013-05-12 15:56:22 -05:00
parent bb9ffefd74
commit b66e924310
3 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#lang racket/base #lang racket/base
(require (prefix-in etc: mzlib/etc) (require (prefix-in etc: mzlib/etc)
texpict/mrpict texpict/mrpict
(only-in slideshow/pict pin-line pin-arrow-line) (only-in pict pin-line pin-arrow-line)
(except-in texpict/utils pin-line pin-arrow-line) (except-in texpict/utils pin-line pin-arrow-line)
racket/class racket/class
racket/runtime-path racket/runtime-path

View File

@ -1,8 +1,8 @@
#lang scribble/doc #lang scribble/doc
@(require scribble/manual scribble/bnf "utils.rkt" @(require scribble/manual scribble/bnf "utils.rkt"
slideshow/pict pict
(for-label scriblib/figure scribble/base scribble/sigplan (for-label scriblib/figure scribble/base scribble/sigplan
(except-in slideshow/pict table))) (except-in pict table)))
@(define-syntax-rule (samplemod . text) (codeblock . text)) @(define-syntax-rule (samplemod . text) (codeblock . text))
@(define-syntax-rule (sample a . text) @(define-syntax-rule (sample a . text)
@ -645,12 +645,12 @@ renders as
@section[#:tag "pictures"]{Pictures} @section[#:tag "pictures"]{Pictures}
Any value that is convertable to an image can be used directly within Any value that is convertable to an image can be used directly within
a Scribble document. Functions from the @racketmodname[slideshow/pict] a Scribble document. Functions from the @racketmodname[pict]
and @racketmodname[2htdp/image] libraries, for example, generate and @racketmodname[2htdp/image] libraries, for example, generate
images. For example, images. For example,
@sample|{ @sample|{
@(require slideshow/pict) @(require pict)
This cookie has lost its chocolate chips: This cookie has lost its chocolate chips:
@(colorize (filled-ellipse 40 40) "beige"). @(colorize (filled-ellipse 40 40) "beige").

View File

@ -1,7 +1,7 @@
#lang racket/base #lang racket/base
(require "class-diagrams.rkt" (require "class-diagrams.rkt"
(only-in slideshow/pict pin-arrow-line) (only-in pict pin-arrow-line)
texpict/mrpict texpict/mrpict
(except-in texpict/utils pin-arrow-line) (except-in texpict/utils pin-arrow-line)
racket/system racket/system