racket/collects/plot/utils.rkt
Neil Toronto 015625e732 PLoT documentation for new renderers and plot/utils (code changes are only to move code around so a previously public function could be public again)
Many little doc fixes

Closes PR 12433

Closes PR 12435

Please please please merge into release
2012-01-23 15:56:11 -07:00

34 lines
1.3 KiB
Racket

#lang racket/base
(require "common/contract.rkt"
"common/marching-squares.rkt"
"common/marching-cubes.rkt"
"contracted/parameters.rkt"
"contracted/math.rkt"
"contracted/axis-transform.rkt"
"contracted/ticks.rkt"
"contracted/format.rkt"
"contracted/draw.rkt"
"contracted/sample.rkt"
"contracted/samplers.rkt"
"contracted/legend.rkt"
"contracted/plot-element.rkt"
"contracted/date-time.rkt"
"contracted/kde.rkt")
(provide (all-from-out "common/contract.rkt")
(all-from-out "common/marching-squares.rkt")
(all-from-out "common/marching-cubes.rkt")
(all-from-out "contracted/parameters.rkt")
(all-from-out "contracted/math.rkt")
(all-from-out "contracted/axis-transform.rkt")
(all-from-out "contracted/ticks.rkt")
(all-from-out "contracted/format.rkt")
(all-from-out "contracted/draw.rkt")
(all-from-out "contracted/sample.rkt")
(all-from-out "contracted/samplers.rkt")
(all-from-out "contracted/legend.rkt")
(all-from-out "contracted/plot-element.rkt")
(all-from-out "contracted/date-time.rkt")
(all-from-out "contracted/kde.rkt"))