From: <jd...@us...> - 2008-06-19 12:15:34
|
Revision: 5591 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5591&view=rev Author: jdh2358 Date: 2008-06-19 05:15:20 -0700 (Thu, 19 Jun 2008) Log Message: ----------- added installing section to users guide Modified Paths: -------------- trunk/matplotlib/doc/users/index.rst trunk/matplotlib/doc/users/mathtext.rst trunk/matplotlib/lib/matplotlib/lines.py Modified: trunk/matplotlib/doc/users/index.rst =================================================================== --- trunk/matplotlib/doc/users/index.rst 2008-06-18 22:06:03 UTC (rev 5590) +++ trunk/matplotlib/doc/users/index.rst 2008-06-19 12:15:20 UTC (rev 5591) @@ -13,6 +13,7 @@ :maxdepth: 2 intro.rst + installing.rst pyplot_tutorial.rst navigation_toolbar.rst customizing.rst Modified: trunk/matplotlib/doc/users/mathtext.rst =================================================================== --- trunk/matplotlib/doc/users/mathtext.rst 2008-06-18 22:06:03 UTC (rev 5590) +++ trunk/matplotlib/doc/users/mathtext.rst 2008-06-19 12:15:20 UTC (rev 5591) @@ -4,7 +4,7 @@ ================================ You can use TeX markup in any matplotlib text string. Note that you -do not need to have TeX installed, since matplotlib ships its own TeX +do not need to have TeX installed, since matplotlib ships its own` TeX expression parser, layout engine and fonts. The layout engine is a fairly direct adaptation of the layout algorithms in Donald Knuth's TeX, so the quality is quite good (matplotlib also provides a Modified: trunk/matplotlib/lib/matplotlib/lines.py =================================================================== --- trunk/matplotlib/lib/matplotlib/lines.py 2008-06-18 22:06:03 UTC (rev 5590) +++ trunk/matplotlib/lib/matplotlib/lines.py 2008-06-19 12:15:20 UTC (rev 5591) @@ -837,7 +837,7 @@ def _draw_thin_diamond(self, renderer, gc, path, path_trans): offset = renderer.points_to_pixels(self._markersize) transform = Affine2D().translate(-0.5, -0.5) \ - .rotate_deg(45).scale(offset * 0.6, offset) + .rot<ate_deg(45).scale(offset * 0.6, offset) rgbFace = self._get_rgb_face() renderer.draw_markers(gc, Path.unit_rectangle(), transform, path, path_trans, rgbFace) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |