diff --git a/lib/damask/colormaps.py b/lib/damask/colormaps.py index bc4f73c02..06029a0ae 100644 --- a/lib/damask/colormaps.py +++ b/lib/damask/colormaps.py @@ -86,8 +86,7 @@ class Color(): def _HSV2HSL(self): - """ - Convert H(ue) S(aturation) V(alue or brightness) to H(ue) S(aturation) L(uminance) + """Convert H(ue) S(aturation) V(alue or brightness) to H(ue) S(aturation) L(uminance) with all values in the range of 0 to 1 http://codeitdown.com/hsl-hsb-hsv-color/ @@ -107,8 +106,7 @@ class Color(): def _HSL2HSV(self): - """ - Convert H(ue) S(aturation) L(uminance) to H(ue) S(aturation) V(alue or brightness) + """Convert H(ue) S(aturation) L(uminance) to H(ue) S(aturation) V(alue or brightness) with all values in the range of 0 to 1 http://codeitdown.com/hsl-hsb-hsv-color/