process: function()

in src/lorenz.js [55:66]


    process: function(inlets) {
        if (elmLorenz) {
            elmLorenz.ports.modifyLorenz.send({
                sigma: inlets.sigma || 10,
                beta: inlets.beta || 2.6,
                rho: inlets.rho || 28,
                step: inlets.step || 0.005,
                thickness: inlets.thickness || 1.0,
                numVertices : Math.floor(inlets.numVertices) || 2000
            });
        };
    }