Revision 2ad963b97009de7f1bf46c5da8604388c2c67d05 authored by Matthias Templ on 27 February 2013, 09:44:32 UTC, committed by cran-robot on 27 February 2013, 09:44:32 UTC
1 parent 823295f
Raw File
alphablend.R
alphablend <-
function (col, alpha) 
{
    colrgb <- col2rgb(col)/255
    rgb(colrgb[1, ], colrgb[2, ], colrgb[3, ], alpha)
}
back to top