GithubHelp home page GithubHelp logo

Delta monkey patch about chroma.js HOT 4 CLOSED

gka avatar gka commented on September 28, 2024
Delta monkey patch

from chroma.js.

Comments (4)

gka avatar gka commented on September 28, 2024

Is this possibly the same as chroma.interpolate, which I totally forgot to mention in the API docs...

chroma.color('red').interpolate(0.5, 'yellow').hex() // "#ff7f00"

// alternative API
chroma.interpolate('red', 'yellow', 0.5);

Works with all color spaces.

from chroma.js.

ericvoid avatar ericvoid commented on September 28, 2024

What I mean by delta is the difference between colors, or the distance of two colors. See the following fiddle:

http://jsfiddle.net/JKYM2/1/

In the "Delta" section I calculated the distance between the green and the orange colors, and then added the distance to the orange, creating the pink color.

So in this way, the interpolation is useful to find colors between two others, and the delta is useful to "advance" given a distance of two colors.

ps: I found a bug on the code above. the add function should be:

chroma.add = function (color, delta) { 
    var c_ = color.hcl(); 
    return chroma.hcl(c_[0] + delta[0], c_[1] + delta[1], c_[2] + delta[2]); 
};

And subtract:

chroma.subtract = function (color, delta) { 
    var c_ = color.hcl(); 
    return chroma.hcl(c_[0] - delta[0], c_[1] - delta[1], c_[2] - delta[2]); 
};

from chroma.js.

gka avatar gka commented on September 28, 2024

So you mean extrapolation. You do the same via:

c.interpolate(2, c1, 'lch');

see this: http://jsfiddle.net/JKYM2/2/

from chroma.js.

ericvoid avatar ericvoid commented on September 28, 2024

Sort of. You can obviously use it for extrapolation.

You could use it to compare two colors, for example to check the distance, create new ones or fix a color.

You could also add arbitrary values, for example I could create a delta of 30 degrees on hue and use it to find the harmonies.

As time libraries has "delta-time" classes to operate on dates and times, I think it would be useful to have "delta-color" on this one.

from chroma.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.