Files
d3-spring-model/examples/js/algos/neighbourSampling.js
Pitchaya Boonsarngsuk 6df7e225ba Move example JS files
2018-03-13 01:07:40 +00:00

30 lines
825 B
JavaScript

/**
* Initialize the Chalmers' 1996 algorithm and start simulation.
*/
function startNeighbourSamplingSimulation() {
console.log("startNeighbourSamplingSimulation");
//springForce = true;
alreadyRanIterations = 0;
manualStop = true;
simulation.stop();
p1 = performance.now();
let force = d3.forceNeighbourSampling()
.neighbourSize(NEIGHBOUR_SIZE)
.sampleSize(SAMPLE_SIZE)
.distance(function (s, t) {
return distanceFunction(s, t, props, norm);
})
.stableVelocity(0.000001) //TODO
.onStableVelo(ended);
simulation
.alphaDecay(0)
.alpha(1)
.on("tick", ticked)
.on("end", ended)
.force(forceName, force);
// Restart the simulation.
simulation.restart();
}