Merge pull request 'bugfix-layered-links' (#9) from bugfix-layered-links into main
Reviewed-on: #9pull/10/head
commit
5494660d76
12
main.js
12
main.js
|
@ -103,16 +103,18 @@ function setBackground(c) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function setLinkOpacity(o, primary) {
|
function setLinkOpacity(o, primary) {
|
||||||
if( primary ) {
|
if( structure.nolink2opacity ) {
|
||||||
link_ms[0].opacity = o;
|
link_ms.map((lm) => lm.opacity = o);
|
||||||
} else {
|
} else {
|
||||||
for( const lm of link_ms.slice(1) ) {
|
if( primary ) {
|
||||||
lm.opacity = o;
|
link_ms[0].opacity = o;
|
||||||
|
} else {
|
||||||
|
link_ms.slice(1).map((lm) => lm.opacity = o);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let gui; //
|
let gui;
|
||||||
|
|
||||||
|
|
||||||
function changeShape() {
|
function changeShape() {
|
||||||
|
|
16
polytopes.js
16
polytopes.js
|
@ -359,6 +359,16 @@ function link_labels(nodes, link) {
|
||||||
// layer and the links follow that
|
// layer and the links follow that
|
||||||
|
|
||||||
export const cell120_layered = (max) => {
|
export const cell120_layered = (max) => {
|
||||||
|
const LAYER_NAMES = {
|
||||||
|
0: "North pole",
|
||||||
|
1: "Arctic circle",
|
||||||
|
2: "North temperate",
|
||||||
|
3: "Tropic of Cancer",
|
||||||
|
4: "Equator",
|
||||||
|
5: "Tropic of Capricorn",
|
||||||
|
6: "South temperate",
|
||||||
|
7: "Antarctic circle (all)"
|
||||||
|
};
|
||||||
const nodes = make_120cell_vertices();
|
const nodes = make_120cell_vertices();
|
||||||
const links = auto_detect_edges(nodes, 4);
|
const links = auto_detect_edges(nodes, 4);
|
||||||
|
|
||||||
|
@ -382,8 +392,8 @@ export const cell120_layered = (max) => {
|
||||||
|
|
||||||
for( const i of [ 0, 1, 2, 3, 4, 5, 6, 7 ] ) {
|
for( const i of [ 0, 1, 2, 3, 4, 5, 6, 7 ] ) {
|
||||||
layers.push(i);
|
layers.push(i);
|
||||||
options.unshift({
|
options.push({
|
||||||
name: "Layer " + String(i),
|
name: LAYER_NAMES[i],
|
||||||
links: [...layers],
|
links: [...layers],
|
||||||
nodes: [...layers]
|
nodes: [...layers]
|
||||||
})
|
})
|
||||||
|
@ -397,6 +407,7 @@ export const cell120_layered = (max) => {
|
||||||
node_size: 0.02,
|
node_size: 0.02,
|
||||||
link_size: 0.02
|
link_size: 0.02
|
||||||
},
|
},
|
||||||
|
nolink2opacity: true,
|
||||||
options: options
|
options: options
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -598,7 +609,6 @@ function get_node(nodes, id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function audit_link_labels(nodes, links) {
|
function audit_link_labels(nodes, links) {
|
||||||
console.log("Link audit");
|
|
||||||
for( const l of links ) {
|
for( const l of links ) {
|
||||||
const n1 = get_node(nodes, l.source);
|
const n1 = get_node(nodes, l.source);
|
||||||
const n2 = get_node(nodes, l.target);
|
const n2 = get_node(nodes, l.target);
|
||||||
|
|
Loading…
Reference in New Issue