Revision bea0f6203c78ee704dca8deb7c74cc48e13ee950 authored by Matthias Templ on 15 May 2012, 15:35:41 UTC, committed by cran-robot on 15 May 2012, 15:35:41 UTC
1 parent 2849c21
Raw File
alphablend.R
alphablend <-
function (col, alpha) 
{
    colrgb <- col2rgb(col)/255
    rgb(colrgb[1, ], colrgb[2, ], colrgb[3, ], alpha)
}
back to top