Skip to content
Snippets Groups Projects
Commit f2f730ba authored by Alexander Rose's avatar Alexander Rose
Browse files

fix parentDisplay 'between' logic

parent ceecee37
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,7 @@ class Viewer {
structures.push({ ref: structureProperties?.ref || structure.ref });
}
// remove current structuresfrom hierarchy as they will be merged
// remove current structures from hierarchy as they will be merged
// TODO only works with using loadStructuresFromUrlsAndMerge once
// need some more API metho to work with the hierarchy
this.plugin.managers.structure.hierarchy.updateCurrent(this.plugin.managers.structure.hierarchy.current.structures, 'remove');
......
......@@ -111,7 +111,7 @@ function createInterUnitInteractionCylinderMesh(ctx: VisualContext, structure: S
}
}
return parentDisplay === 'full' ? flagA && flagB : flagA !== flagB;
return parentDisplay === 'full' ? flagA && flagB : flagA === flagB;
} else {
assertUnreachable(parentDisplay);
}
......
......@@ -64,7 +64,7 @@ async function createIntraUnitInteractionsCylinderMesh(ctx: VisualContext, unit:
if (childUnit) {
if (parentDisplay === 'stub') {
const f = a[edgeIndex];
for (let i = offsets[f], jl = offsets[f + 1]; i < jl; ++i) {
for (let i = offsets[f], il = offsets[f + 1]; i < il; ++i) {
const e = unit.elements[members[offsets[i]]];
if (!SortedArray.has(childUnit.elements, e)) return true;
}
......@@ -73,18 +73,18 @@ async function createIntraUnitInteractionsCylinderMesh(ctx: VisualContext, unit:
let flagB = false;
const fA = a[edgeIndex];
for (let i = offsets[fA], jl = offsets[fA + 1]; i < jl; ++i) {
for (let i = offsets[fA], il = offsets[fA + 1]; i < il; ++i) {
const eA = unit.elements[members[offsets[i]]];
if (!SortedArray.has(childUnit.elements, eA)) flagA = true;
}
const fB = b[edgeIndex];
for (let i = offsets[fB], jl = offsets[fB + 1]; i < jl; ++i) {
for (let i = offsets[fB], il = offsets[fB + 1]; i < il; ++i) {
const eB = unit.elements[members[offsets[i]]];
if (!SortedArray.has(childUnit.elements, eB)) flagB = true;
}
return parentDisplay === 'full' ? flagA && flagB : flagA !== flagB;
return parentDisplay === 'full' ? flagA && flagB : flagA === flagB;
} else {
assertUnreachable(parentDisplay);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment