Gregor Aisch

Results 66 comments of Gregor Aisch

Wouldn't it be easier for everyone if `d3.lch` would just continue to exist as `d3.lchab` alias?

here you go: https://github.com/gka/nds2013.vis4.net/blob/master/site/_assets/js/coalitions.js.coffee Actually, I might revive this on Sunday for btw13.js. Am 19.09.2013 um 11:37 schrieb Stefan Wehrmeyer [email protected]: > Seat numbers suck, coalition calculator conquers! @gka style....

Maybe it makes sense to allow playing of a sequence of multiple clips using one `play()` call: ``` js canvidControl.play(['clip1', 'clip2', 'clip3']); ``` Seems to be a common use case....

can you provide a complete test for this issue, for instance on jsbin / jsfiddle or similar? I tried to reproduce it with a multi-clip video but didn't see janks.

awesome, will take a look

I think you should be able to import source files directly, e.g. ```js > const rgb2lab = require('chroma-js/src/io/lab/rgb2lab') > rgb2lab(255, 0, 0); // [ 53.24079414130722, 80.09245959641109, 67.20319651585301 ] ``` The...

I assume you are referring to the values defined in `lab-constants.js`? https://github.com/gka/chroma.js/blob/master/src/io/lab/lab-constants.js Kn: 18, Xn: 0.950470, Yn: 1, Zn: 1.088830, t0: 0.137931034, // 4 / 29 t1: 0.206896552, // 6...

At the moment I have no plan of supporting EcmaScript 3 (which came out 20 years ago!). Sorry if that means you can't use chroma.js in Google App scripts.

so this would be something like ```js scale = chroma.scale(['blue', 'red']); scale(0.5); // #800080 scale.invert("#800080"); // 0.5 ```