[racket-dev] Pre-Release Checklist for v6.0, corrected url
Some plots in the documentation are missing a polygon. I think it's
platform-specific, because I can't reproduce the problem.
Examples:
First example plot in "1.5 Renderer and Plot Bounds" (look for a light
green rectangle)
file:///usr/racket-5.91.0.900/doc/plot/intro.html?q=plot#%28part._.Renderer_and_.Plot_.Bounds%29
Last example plot in `plot-z-far-ticks' docs (look for a white hole
under the "z" in the legend)
http://plt.eecs.northwestern.edu/snapshots/current/doc/plot/ticks_and_transforms.html?q=plot-z-far-ticks#%28def._%28%28lib._plot%2Fmain..rkt%29._plot-z-far-ticks%29%29
Here's a program that renders one of the bad plots like Scribble does (I
think):
#lang racket
(require pict plot/pict)
(pict->bitmap
(plot3d-pict (polar3d (λ (θ ρ) 1) #:color 2 #:line-style 'transparent)
#:altitude 25))
Neil ⊥