diff options
author | Georg Brandl <georg@python.org> | 2008-05-09 06:26:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-09 06:26:54 (GMT) |
commit | 3ddaf2d64b8ee83f7ce545efe251df35f918fa5d (patch) | |
tree | d410b28542f4925abc18e9084065a9f42c15afce | |
parent | dfb5bbd44a7b7a4a9746fca341bfefe6ce85a394 (diff) | |
download | cpython-3ddaf2d64b8ee83f7ce545efe251df35f918fa5d.zip cpython-3ddaf2d64b8ee83f7ce545efe251df35f918fa5d.tar.gz cpython-3ddaf2d64b8ee83f7ce545efe251df35f918fa5d.tar.bz2 |
Add another link to colorsys docs.
-rw-r--r-- | Doc/library/colorsys.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/library/colorsys.rst b/Doc/library/colorsys.rst index 2e7f3b7..2cbc704 100644 --- a/Doc/library/colorsys.rst +++ b/Doc/library/colorsys.rst @@ -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) - |