racket/collects/plot/scribblings/common.rkt
Neil Toronto e90ec4b69f Added unstable/latent-contract
Reorganized contracts
Started exposing customization API in plot/utils
Now dog-fooding customization API in earnest
2011-11-10 12:59:41 -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
plot/common/contract-doc)
(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))