Description Usage Arguments Details Value Author(s) See Also Examples
Default color overlay for adding new layers
1 | default_overlay(r0, g0, b0, r, g, b, alpha = 1)
|
r0 |
red channel for the layers that are already in the plot. |
g0 |
green channel for the layers that are already in the plot. |
b0 |
blue channel for the layers that are already in the plot. |
r |
red channel for the new layer |
g |
green channel for the new layer |
b |
blue channel for the new layer |
alpha |
alpha channel for the new layer |
The default overlay is (take red channel for example) r*alpha + r0*(1-alpha)
.
A list which contains overlayed RGB colors.
Zuguang Gu <z.gu@dkfz.de>
Color overlay function is always used in hc_layer,HilbertCurve-method
or hc_layer,GenomicHilbertCurve-method
.
1 2 | # red (1, 0, 0) overlay to the grey (0.5, 0.5, 0.5) with 0.5 transparency
default_overlay(1, 0, 0, 0.5, 0.5, 0.5, 0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.