All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.graphic.Gradient.js Maven / Gradle / Ivy

The newest version!
var Gradient = (function () {
    function Gradient(colorStops) {
        this.colorStops = colorStops || [];
    }
    Gradient.prototype.addColorStop = function (offset, color) {
        this.colorStops.push({
            offset: offset,
            color: color
        });
    };
    return Gradient;
}());
export default Gradient;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy