simulation prerendering is now a config var

This commit is contained in:
Ruben van de Ven 2021-03-13 13:31:00 +01:00
parent f348decd02
commit f9dec8a947
1 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,7 @@ const CONFIG = {
'nodeSize': 16, 'nodeSize': 16,
'baseUrl': 'https://www.securityvision.io/wiki/index.php/', 'baseUrl': 'https://www.securityvision.io/wiki/index.php/',
'dataUrl': 'semantic_data.json', 'dataUrl': 'semantic_data.json',
'preSimulate': true, // run simulation before starting, so we don't start with lines jumping around
'labels': { 'labels': {
'rotate': true, 'rotate': true,
}, },
@ -302,8 +303,10 @@ function buildGraph(data) {
// simulate the first bit without drawing, so we don't have the 'jumping' graph in the beginning // simulate the first bit without drawing, so we don't have the 'jumping' graph in the beginning
for (var i = 0, n = Math.ceil(Math.log(simulation.alphaMin()) / Math.log(1 - simulation.alphaDecay())); i < n; ++i) { if (CONFIG.preSimulate) {
simulation.tick(); for (var i = 0, n = Math.ceil(Math.log(simulation.alphaMin()) / Math.log(1 - simulation.alphaDecay())); i < n; ++i) {
simulation.tick();
}
} }