UNPKG
chromatism2
Version:
latest (3.0.2)
3.0.2
3.0.1
A simple set of utility functions for colours.
github.com/tehshrike/chromatism
tehshrike/chromatism
chromatism2
/
src
/
conversions
/
xyY.js
14 lines
(12 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
default
{
XYZ
:
value
=>
{
const
{ x, y, Y } = value
const
X = (Y / y) * x
const
Z = (Y / y) * ((
1
- x) - y)
return
{ X, Y, Z } } }