Displaying 2 results from an estimated 2 matches for "colordatabase".
2000 Feb 29
0
mapping of colornames into hsv: half way done
...ower case
The C source has the information twice
rgb.c maps 657 names to rgb (mixed upper and lower case)
graphics.c maps 657 names tp colorstrings (lower case only)
internal name2col() and R colors() accesses those in graphics.c
Here is the color representations from graphics.c in R code
.ColorDataBase <- matrix(c(
"white", "#FFFFFF",
"aliceblue", "#F0F8FF",
"antiquewhite", "#FAEBD7",
"antiquewhite1", "#FFEFDB",
"antiquewhite2", "#EEDFCC",
"antiquewhite3", &qu...
2000 Mar 29
1
pre summary: mapping of colornames into hsv?
...which copies
> the info from
> Jens> graphics.c, unless someone plans to export internal
> name2col() to
> Jens> become an official R function, which of course
> would be a less
> Jens> redundant solution.
>
> and a day later, Jens provided
>
> .ColorDataBase <- matrix(c(
> "white", "#FFFFFF",
> "aliceblue", "#F0F8FF",
> "antiquewhite", "#FAEBD7",
> "antiquewhite1", "#FFEFDB",
> "antiquewhite2", "#EEDFCC",...