racket/collects/plot/scribblings/common.rkt
Neil Toronto 8aa623c2e8 Made plots in plot' and math' render nicely in PDFs (plots in docs are picts now)
Fixed errors in `linear-seq' when end <= start
2012-11-25 22:32:07 -08:00

44 lines
1.3 KiB
Racket

#lang racket/base
(require scribble/eval
(for-label racket
racket/gui/base
slideshow/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
slideshow/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))