Sha256: 202b1b5650606a3ce34d32a8a2794150df3c989a6d40d01a0e54db0f77cbbc8e
Contents?: true
Size: 217 Bytes
Versions: 5
Compression:
Stored size: 217 Bytes
Contents
function d3_xyz_lab(x) { return x > 0.008856 ? Math.pow(x, 1 / 3) : 7.787037 * x + 4 / 29; } function d3_xyz_rgb(r) { return Math.round(255 * (r <= 0.00304 ? 12.92 * r : 1.055 * Math.pow(r, 1 / 2.4) - 0.055)); }
Version data entries
5 entries across 5 versions & 3 rubygems