process: function()

in toolkit/jb/toolkit.js [380:385]


    process: function(inlets) {
        if (!inlets.points || !inlets.width || !inlets.height) return;
        return {
            'voronoi': d3.voronoi().size([inlets.width, inlets.height])(inlets.points)
        }
    }