colors: fix using list, silly auto-use.
parent
032a69dec0
commit
4fe22de451
|
@ -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 } ;
|
||||||
|
|
|
@ -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]" } "." } ;
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue