Revision 775c7e1be4c58aaf8adccdd2b92d07aa9cdc265f authored by Matthias Templ on 14 January 2020, 05:10:03 UTC, committed by cran-robot on 14 January 2020, 05:10:03 UTC
1 parent d761b2f
Raw File
alphablend.R
alphablend <-
function (col, alpha) 
{
    colrgb <- col2rgb(col)/255
    rgb(colrgb[1, ], colrgb[2, ], colrgb[3, ], alpha)
}
back to top