-
I just forgot to mention: this would allow one, for instance, to create an RGB-space rainbow color gradient, analogous to the HSB one (color.lineargradient.Rainbow), but usable in surface plots. The surface style currently does not support the HSB color space because "colorspace string not available for hsb colors".
2008-06-26 17:46:27 UTC in PyX
-
It would be convenient if the getcolor() of color gradients would clip their argument to the interval [0,1].
For instance, when specifying mincolor and maxcolor to the surface style, values out of the interval [mincolor, maxcolor] imply normalized values (those passed to the gradient's getcolor() function) that are either negative or greater than unity.
2008-06-26 17:38:21 UTC in PyX
-
There are two points here.
1. The user should be able to able to specify which color space the interpolation is made in, regardless of the color space of the input colors. For instance, one could specify input colors in RGB space but require the interpolation to be made in HSB space.
2. The direction of hue interpolation should be configurable. Since it is a cyclic variable, it is possible...
2008-06-26 17:29:04 UTC in PyX
-
Item spacing should be adjustable in notes.
In beamberbasenotes.sty, the definitions of
- \beamer@noteenvstart
- \beamer@setupnote
set \itemsep to zero, which is not always desirable.
Please, make \itemsep configurable for notes.
2008-06-26 17:03:37 UTC in The LaTeX Beamer Class
-
The surface style does not obey the imposed color data limits (mincolor and maxcolor).
Proposed fix in pyx/graph/style.py, lines 1761-1764.
OLD:
if self.mincolor is not None:
mincolor = self.mincolor
if self.maxcolor is not None:
maxcolor = self.maxcolor
NEW:
if self.mincolor is not None:
privatedata.mincolor =...
2008-06-23 21:36:27 UTC in PyX
-
The z4 axis doesn't appear in the right place.
Suggested fix: in line 850, change
self.vpos_pt(0, 0, vz)
for
self.vpos_pt(1, 1, vz)
2008-06-19 19:34:32 UTC in PyX
-
mungerd committed patchset 18 of module visu to the Visu CVS repository, changing 6 files.
2003-01-20 22:41:55 UTC in Visu
-
mungerd committed patchset 17 of module visu to the Visu CVS repository, changing 8 files.
2003-01-20 19:53:36 UTC in Visu
-
mungerd committed patchset 16 of module visu to the Visu CVS repository, changing 4 files.
2003-01-19 20:43:14 UTC in Visu
-
mungerd committed patchset 15 of module visu to the Visu CVS repository, changing 6 files.
2003-01-19 19:50:30 UTC in Visu