]> gitweb.factorcode.org Git - factor.git/blob - basis/colors/hsv/hsv-docs.factor
4a9d8a9b9ba3ced9b276ef0d590a8e3357402506
[factor.git] / basis / colors / hsv / hsv-docs.factor
1 IN: colors.hsv
2 USING: help.markup help.syntax ;
3
4 HELP: hsva
5 { $class-description "The class of HSV (Hue, Saturation, Value) colors with an alpha channel. The " { $slot "hue" } " slot stores a value in the interval " { $snippet "[0,360]" } " and the remaining slots store values in the interval " { $snippet "[0,1]" } "." } ;
6
7 ARTICLE: "colors.hsv" "HSV colors"
8 "The " { $vocab-link "colors.hsv" } " vocabulary implements colors specified by their hue, saturation, and value, together with an alpha channel."
9 { $subsection hsva }
10 { $subsection <hsva> }
11 { $see-also "colors" } ;
12
13 ABOUT: "colors.hsv"