Skip to content

Commit

Permalink
Update link to Agg website
Browse files Browse the repository at this point in the history
  • Loading branch information
QuLogic committed Oct 7, 2021
1 parent 8050ee6 commit fcc8445
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/users/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ backends: PS creates `PostScript®
<https://www.adobe.com/products/postscript.html>`_ hardcopy, SVG
creates `Scalable Vector Graphics <https://www.w3.org/Graphics/SVG/>`_
hardcopy, Agg creates PNG output using the high quality `Anti-Grain
Geometry <http://antigrain.com/>`_
Geometry <http://agg.sourceforge.net/antigrain.com/>`_
library that ships with Matplotlib, GTK embeds Matplotlib in a
`Gtk+ <https://www.gtk.org/>`_
application, GTKAgg uses the Anti-Grain renderer to create a figure
Expand Down
2 changes: 1 addition & 1 deletion examples/misc/demo_agg_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
rendering. You can modify the rendering of Artists by applying a filter via
`.Artist.set_agg_filter`.
.. _Anti-Grain Geometry (AGG): http://antigrain.com
.. _Anti-Grain Geometry (AGG): http://agg.sourceforge.net/antigrain.com
"""

import matplotlib.cm as cm
Expand Down
4 changes: 3 additions & 1 deletion lib/matplotlib/backends/backend_agg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
An `Anti-Grain Geometry <http://antigrain.com>`_ (AGG) backend.
An `Anti-Grain Geometry`_ (AGG) backend.
Features that are implemented:
Expand All @@ -17,6 +17,8 @@
Still TODO:
* integrate screen dpi w/ ppi and text
.. _Anti-Grain Geometry: http://agg.sourceforge.net/antigrain.com
"""

try:
Expand Down
2 changes: 1 addition & 1 deletion src/ft2font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
To improve the hinting of the fonts, this code uses a hack
presented here:
http://antigrain.com/research/font_rasterization/index.html
http://agg.sourceforge.net/antigrain.com/research/font_rasterization/index.html
The idea is to limit the effect of hinting in the x-direction, while
preserving hinting in the y-direction. Since freetype does not
Expand Down
2 changes: 1 addition & 1 deletion tutorials/introductory/usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def my_plotter(ax, data1, data2, param_dict):
# The names of builtin backends case-insensitive; e.g., 'QtAgg' and
# 'qtagg' are equivalent.
#
# .. _`Anti-Grain Geometry`: http://antigrain.com/
# .. _`Anti-Grain Geometry`: http://agg.sourceforge.net/antigrain.com/
# .. _`Portable Document Format`: https://en.wikipedia.org/wiki/Portable_Document_Format
# .. _Postscript: https://en.wikipedia.org/wiki/PostScript
# .. _`Scalable Vector Graphics`: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics
Expand Down

0 comments on commit fcc8445

Please sign in to comment.