Limit naive layout algorithm iterations count

This commit is contained in:
futpib 2018-11-22 00:46:40 +03:00
parent 08a561bcfd
commit 29bc4a4abf

View File

@ -91,7 +91,8 @@ module.exports = class LayoutEngine {
node.y = offsetY + (direction * (Math.floor(columnHeight / 2) - 1) * (size + margin));
let intersected = true;
while (intersected) {
let iterations = 0;
while (intersected && iterations < 10) {
intersected = false;
for (const otherNode of nodes) {
if (otherNode.type === 'satellite') {
@ -102,6 +103,8 @@ module.exports = class LayoutEngine {
continue;
}
iterations += 1;
if (this.nodesIntersect(node, otherNode)) {
node.y += direction * (size + margin);
intersected = true;