Description Usage Arguments Details Value Note Author(s) Examples
These functions obtain the value of a colour property, or modify it. They will convert between colour spaces as required, but the RGB representation will be appropriately updated in the result.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
shades |
One or more colours, in any suitable form (see
|
values |
New values for the property in question, with |
... |
Arguments to replacement functions |
Brightness and lightness differ technically, in the sense that one is absolute and the other is relative. Intuitively, a grey square on white paper is brighter under bright sunlight than in a dark room, but its lightness (relative to the white around it) is constant between conditions. In these functions, brightness is “value” in HSV space and is between 0 and 1, while lightness is defined in Lab space and is between 0 and 100. Saturation and chroma are also related. Hue is defined in HSV space, with red at 0º (and 360º), which is generally the most familiar parameterisation.
Current colour property values, or new colours of class
"shade"
. If shades
is a function, the result will be a new
function that wraps the old one and modifies its return value accordingly.
The colour property functions are vectorised over both of their
arguments, such that the dimensions of the result will be
c(length(values),dim(shades))
. However, the recycle
function
can be used to suppress the usual dimensional expansion, and instead
follow R's standard recycling rule.
Jon Clayden <code@clayden.org>
1 2 3 4 5 6 7 8 | saturation(c("papayawhip","lavenderblush","olivedrab"))
saturation("papayawhip", 0.7)
saturation("papayawhip", delta(0.2))
saturation("papayawhip", scalefac(1.5))
saturation(c("red","green"), c(0.4,0.6))
saturation(c("red","green"), recycle(0.4,0.6))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.