racket/collects/plot/scribblings/common.rkt
Robby Findler 9932ef33f7 move the slideshow/pict library to its own collection
also, adjust all of the requires in the tree to point to the pict
collection
2013-05-12 22:07:58 -05:00

44 lines
1.3 KiB
Racket

#lang racket/base
(require scribble/eval
(for-label racket
racket/gui/base
pict
db
plot
plot/utils
unstable/contract)
plot
plot/utils
plot/doc
unstable/latent-contract/defthing)
(provide (all-defined-out)
(all-from-out scribble/eval)
(for-label (all-from-out racket
racket/gui/base
pict
db
plot
plot/utils
unstable/contract))
(all-from-out plot)
(all-from-out plot/doc)
(all-from-out plot/utils)
doc-apply)
(define (plot-name) "PLoT")
(define plot-eval
(let ([eval (make-base-eval)])
(eval '(begin
(require racket/math racket/match racket/list racket/draw racket/class
(rename-in (except-in plot plot plot3d)
[plot-pict plot]
[plot3d-pict plot3d])
plot/utils)))
eval))
(define (close-plot-eval)
(close-eval plot-eval))