UNPKG
d3-jsnext
Version:
latest (3.5.5)
3.5.5
d3, but futuristic
github.com/rollup/d3-jsnext
rollup/d3-jsnext
d3-jsnext
/
src
/
color
/
xyz.js
9 lines
(7 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
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
)); }
export
{ d3_xyz_rgb, d3_xyz_lab };