From 185e23fb63237672e1fd1bbc06998710389b9ea7 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Thu, 30 Mar 2023 15:54:03 -0700 Subject: [PATCH] Added Topics to color.scad --- color.scad | 2 ++ 1 file changed, 2 insertions(+) diff --git a/color.scad b/color.scad index 6cf1f6b..e2f4db7 100644 --- a/color.scad +++ b/color.scad @@ -118,6 +118,7 @@ module rainbow(list, stride=1, maxhues, shuffle=false, seed) // Function&Module: hsl() // Synopsis: Sets the color of children to a specified hue, saturation, lightness and optional alpha channel value. // See Also: hsv(), recolor(), color_this() +// Topics: Colors, Colorspace // Usage: // hsl(h,[s],[l],[a]) CHILDREN; // rgb = hsl(h,[s],[l],[a]); @@ -155,6 +156,7 @@ module hsl(h,s=1,l=0.5,a=1) // Function&Module: hsv() // Synopsis: Sets the color of children to a hue, saturation, value and optional alpha channel value. // See Also: hsl(), recolor(), color_this() +// Topics: Colors, Colorspace // Usage: // hsv(h,[s],[v],[a]) CHILDREN; // rgb = hsv(h,[s],[v],[a]);