Revision 4c9961af6c3e72b611474c0722c9262fb871ad46 authored by Matthias Templ on 05 July 2010, 18:25:41 UTC, committed by cran-robot on 05 July 2010, 18:25:41 UTC
1 parent b66ed0e
Raw File
alphablend.R
alphablend <-
function (col, alpha) 
{
    colrgb <- col2rgb(col)/255
    rgb(colrgb[1, ], colrgb[2, ], colrgb[3, ], alpha)
}
back to top