Initial Commit

This commit is contained in:
2026-01-15 21:52:12 +01:00
committed by erik
parent 3ed42cdeb6
commit 5a70f775f1
6702 changed files with 1389544 additions and 0 deletions

29
node_modules/color-space/ciecam.js generated vendored Normal file
View 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;