colors: fix using list, silly auto-use.

db4
John Benediktsson 2012-10-21 12:09:59 -07:00
parent 032a69dec0
commit 4fe22de451
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
! Copyright (C) 2008 Eduardo Cavazos. ! Copyright (C) 2008 Eduardo Cavazos.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: colors kernel accessors ; USING: accessors colors kernel math ;
IN: colors.gray IN: colors.gray
TUPLE: gray < color { gray read-only } { alpha read-only } ; TUPLE: gray < color { gray read-only } { alpha read-only } ;

View File

@ -1,5 +1,5 @@
USING: help.markup help.syntax ;
IN: colors.cmyx IN: colors.cmyk
HELP: cmyka HELP: cmyka
{ $class-description "The class of CMYK (Cyan, Magenta, Yellow, Black) colors with an alpha channel. All slots store values in the interval " { $snippet "[0,1]" } "." } ; { $class-description "The class of CMYK (Cyan, Magenta, Yellow, Black) colors with an alpha channel. All slots store values in the interval " { $snippet "[0,1]" } "." } ;

View File

@ -1,7 +1,8 @@
! Copyright (C) 2012 John Benediktsson ! Copyright (C) 2012 John Benediktsson
! See http://factorcode.org/license.txt for BSD license ! See http://factorcode.org/license.txt for BSD license
USING: accessors colors kernel math math.order ; USING: accessors combinators colors colors.gray kernel math
math.order ;
IN: colors.cmyk IN: colors.cmyk