racket/collects/plot/doc.rkt
Neil Toronto a710cbb7fe Speed/readability improvements in contour, surface and isosurface renderers
Progress on customization docs
Snip fixes and UI improvements
2011-11-14 22:01:07 -08:00

86 lines
3.3 KiB
Racket

#lang racket/base
(require "common/contract-doc.rkt")
;; ===================================================================================================
;; Common exports
(require "common/parameters.rkt"
"common/contract.rkt"
"common/axis-transform.rkt"
"common/ticks.rkt"
"common/math.rkt"
"common/plot-element.rkt"
"common/non-renderer.rkt"
"common/format.rkt"
"common/sample.rkt"
"common/draw.rkt"
"common/date-time.rkt"
"common/marching-squares.rkt"
"common/marching-cubes.rkt"
"common/legend.rkt")
(provide (only-doc-out
(combine-out (all-from-out "common/parameters.rkt")
(all-from-out "common/contract.rkt")
(all-from-out "common/axis-transform.rkt")
(all-from-out "common/ticks.rkt")
(all-from-out "common/math.rkt")
(all-from-out "common/plot-element.rkt")
(all-from-out "common/non-renderer.rkt")
(all-from-out "common/format.rkt")
(all-from-out "common/sample.rkt")
(all-from-out "common/draw.rkt")
(all-from-out "common/date-time.rkt")
(all-from-out "common/marching-squares.rkt")
(all-from-out "common/marching-cubes.rkt")
(all-from-out "common/legend.rkt"))))
;; ===================================================================================================
;; 2D exports
(require "plot2d/plot.rkt"
"plot2d/point.rkt"
"plot2d/line.rkt"
"plot2d/interval.rkt"
"plot2d/contour.rkt"
"plot2d/rectangle.rkt"
"plot2d/decoration.rkt"
"plot2d/kde.rkt")
(provide (only-doc-out
(combine-out (all-from-out "plot2d/plot.rkt")
(all-from-out "plot2d/point.rkt")
(all-from-out "plot2d/line.rkt")
(all-from-out "plot2d/interval.rkt")
(all-from-out "plot2d/contour.rkt")
(all-from-out "plot2d/rectangle.rkt")
(all-from-out "plot2d/decoration.rkt")
(all-from-out "plot2d/kde.rkt"))))
;; ===================================================================================================
;; 3D exports
(require "plot3d/plot.rkt"
"plot3d/surface.rkt"
"plot3d/contour.rkt"
"plot3d/line.rkt"
"plot3d/point.rkt"
"plot3d/isosurface.rkt"
"plot3d/rectangle.rkt")
(provide (only-doc-out
(combine-out (all-from-out "plot3d/plot.rkt")
(all-from-out "plot3d/surface.rkt")
(all-from-out "plot3d/contour.rkt")
(all-from-out "plot3d/line.rkt")
(all-from-out "plot3d/point.rkt")
(all-from-out "plot3d/isosurface.rkt")
(all-from-out "plot3d/rectangle.rkt"))))
;; ===================================================================================================
;; Deprecated functions
(require "deprecated/deprecated.rkt")
(provide (only-doc-out (all-from-out "deprecated/deprecated.rkt")))