]> gitweb.factorcode.org Git - factor.git/blob - basis/colors/hsv/hsv-docs.factor
factor: clean up whitespace in -docs files
[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 { $subsections
10     hsva
11     <hsva>
12 }
13 { $see-also "colors" } ;
14
15 ABOUT: "colors.hsv"