racket/collects/plot/scribblings/common.rkt
Neil Toronto 553c72ab28 Moved some flonum stuff (e.g. flatan2, flnext, +max.0, +min.0, etc.) to unstable/flonum (will document in another commit)
Moved Racket-language, doc-generating "defthing" defines to unstable/latent-contract/defthing (will document in another commit)
2011-11-25 18:40:19 -07:00

37 lines
1.1 KiB
Racket

#lang racket/base
(require scribble/eval
(for-label racket
racket/gui/base
slideshow/pict
plot
plot/utils)
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
plot
plot/utils))
(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-bitmap plot]
[plot3d-bitmap plot3d])
plot/utils)))
eval))