]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add another link to colorsys docs.
authorGeorg Brandl <georg@python.org>
Fri, 9 May 2008 06:26:54 +0000 (06:26 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 9 May 2008 06:26:54 +0000 (06:26 +0000)
Doc/library/colorsys.rst

index 2e7f3b73b14048e7d3448b9a021bf54f889bfdb5..2cbc704db1cefd73d45b9e94c2f95c505834f891 100644 (file)
@@ -1,4 +1,3 @@
-
 :mod:`colorsys` --- Conversions between color systems
 =====================================================
 
@@ -15,8 +14,11 @@ spaces are floating point values.  In the YIQ space, the Y coordinate is between
 0 and 1, but the I and Q coordinates can be positive or negative.  In all other
 spaces, the coordinates are all between 0 and 1.
 
-More information about color spaces can be found at
-http://www.poynton.com/ColorFAQ.html.
+.. seealso::
+
+   More information about color spaces can be found at
+   http://www.poynton.com/ColorFAQ.html and
+   http://www.cambridgeincolour.com/tutorials/color-spaces.htm.
 
 The :mod:`colorsys` module defines the following functions:
 
@@ -57,4 +59,3 @@ Example::
    (0.25, 0.5, 0.4)
    >>> colorsys.hsv_to_rgb(0.25, 0.5, 0.4)
    (0.3, 0.4, 0.2)
-