Initial Commit
This commit is contained in:
29
node_modules/color-space/ciecam.js
generated
vendored
Normal file
29
node_modules/color-space/ciecam.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* CIECAM02 http://en.wikipedia.org/wiki/CIECAM02
|
||||
*
|
||||
* @todo add transforms
|
||||
*
|
||||
* @module cam
|
||||
*/
|
||||
import xyz from './xyz.js';
|
||||
|
||||
|
||||
var cam = {
|
||||
name: 'cam',
|
||||
|
||||
alias: ['ciecam', 'ciecam02'],
|
||||
};
|
||||
|
||||
|
||||
//extend xyz
|
||||
xyz.cam = function(xyz){
|
||||
var x = xyz[0], y = xyz[1], z = xyz[2];
|
||||
//TODO
|
||||
};
|
||||
|
||||
cam.xyz = function () {
|
||||
|
||||
}
|
||||
|
||||
|
||||
export default cam;
|
||||
Reference in New Issue
Block a user