2023-07-27 05:06:25 +00:00
|
|
|
import * as PERMUTE from './permute.js';
|
2023-07-24 00:20:38 +00:00
|
|
|
|
2023-11-04 05:30:46 +00:00
|
|
|
import * as CELLINDEX from './cellindex.js';
|
2023-08-20 01:18:29 +00:00
|
|
|
|
2023-08-02 07:53:17 +00:00
|
|
|
function index_nodes(nodes, scale) {
|
2023-07-27 09:23:26 +00:00
|
|
|
let i = 1;
|
|
|
|
for( const n of nodes ) {
|
|
|
|
n["id"] = i;
|
|
|
|
i++;
|
2023-08-02 07:53:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function scale_nodes(nodes, scale) {
|
|
|
|
for( const n of nodes ) {
|
2023-07-27 09:23:26 +00:00
|
|
|
for( const a of [ 'x', 'y', 'z', 'w' ] ) {
|
|
|
|
n[a] = scale * n[a];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-27 22:16:47 +00:00
|
|
|
function dist2(n1, n2) {
|
|
|
|
return (n1.x - n2.x) ** 2 + (n1.y - n2.y) ** 2 + (n1.z - n2.z) ** 2 + (n1.w - n2.w) ** 2;
|
|
|
|
}
|
|
|
|
|
2023-11-03 01:57:40 +00:00
|
|
|
export function auto_detect_edges(nodes, neighbours, debug=false) {
|
2023-07-27 22:16:47 +00:00
|
|
|
const seen = {};
|
|
|
|
const nnodes = nodes.length;
|
|
|
|
const links = [];
|
|
|
|
let id = 1;
|
|
|
|
for( const n1 of nodes ) {
|
|
|
|
const d2 = [];
|
|
|
|
for( const n2 of nodes ) {
|
|
|
|
d2.push({ d2: dist2(n1, n2), id: n2.id });
|
|
|
|
}
|
|
|
|
d2.sort((a, b) => a.d2 - b.d2);
|
|
|
|
const closest = d2.slice(1, neighbours + 1);
|
2023-07-31 07:23:57 +00:00
|
|
|
if( debug ) {
|
|
|
|
console.log(`closest = ${closest.length}`);
|
|
|
|
console.log(closest);
|
|
|
|
}
|
2023-07-27 22:16:47 +00:00
|
|
|
for( const e of closest ) {
|
|
|
|
const ids = [ n1.id, e.id ];
|
|
|
|
ids.sort();
|
|
|
|
const fp = ids.join(',');
|
|
|
|
if( !seen[fp] ) {
|
|
|
|
seen[fp] = true;
|
|
|
|
links.push({ id: id, label: 0, source: n1.id, target: e.id });
|
|
|
|
id++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-31 07:23:57 +00:00
|
|
|
if( debug ) {
|
|
|
|
console.log(`Found ${links.length} edges`)
|
|
|
|
}
|
2023-07-27 22:16:47 +00:00
|
|
|
return links;
|
|
|
|
}
|
|
|
|
|
|
|
|
// too small and simple to calculate
|
2023-07-27 09:23:26 +00:00
|
|
|
|
2023-07-24 23:55:33 +00:00
|
|
|
export const cell5 = () => {
|
|
|
|
const r5 = Math.sqrt(5);
|
2023-07-25 06:50:37 +00:00
|
|
|
const r2 = Math.sqrt(2) / 2;
|
2023-07-24 23:55:33 +00:00
|
|
|
return {
|
2023-10-31 23:22:26 +00:00
|
|
|
name: '5-cell',
|
2023-07-24 23:55:33 +00:00
|
|
|
nodes: [
|
2023-09-01 09:00:55 +00:00
|
|
|
{id:1, label: 1, x: r2, y: r2, z: r2, w: -r2 / r5 },
|
|
|
|
{id:2, label: 2, x: r2, y: -r2, z: -r2, w: -r2 / r5 },
|
|
|
|
{id:3, label: 3, x: -r2, y: r2, z: -r2, w: -r2 / r5 },
|
|
|
|
{id:4, label: 4, x: -r2, y: -r2, z: r2, w: -r2 / r5 },
|
|
|
|
{id:5, label: 5, x: 0, y: 0, z: 0, w: 4 * r2 / r5 },
|
2023-07-24 23:55:33 +00:00
|
|
|
],
|
|
|
|
links: [
|
|
|
|
{ id:1, source:1, target: 2},
|
|
|
|
{ id:2, source:1, target: 3},
|
|
|
|
{ id:3, source:1, target: 4},
|
|
|
|
{ id:4, source:1, target: 5},
|
|
|
|
{ id:5, source:2, target: 3},
|
|
|
|
{ id:6, source:2, target: 4},
|
|
|
|
{ id:7, source:2, target: 5},
|
|
|
|
{ id:8, source:3, target: 4},
|
|
|
|
{ id:9, source:3, target: 5},
|
|
|
|
{ id:10, source:4, target: 5},
|
2023-07-29 06:23:08 +00:00
|
|
|
],
|
|
|
|
geometry: {
|
2023-07-30 07:56:01 +00:00
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
2023-11-01 00:40:23 +00:00
|
|
|
},
|
|
|
|
options: [ { name: '--' }]
|
2023-07-24 00:20:38 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-07-24 23:55:33 +00:00
|
|
|
export const cell16 = () => {
|
2023-07-27 22:16:47 +00:00
|
|
|
let nodes = PERMUTE.coordinates([1, 1, 1, 1], 0);
|
|
|
|
nodes = nodes.filter((n) => n.x * n.y * n.z * n.w > 0);
|
2023-08-04 06:55:19 +00:00
|
|
|
|
2023-09-01 09:00:55 +00:00
|
|
|
nodes[0].label = 1;
|
|
|
|
nodes[3].label = 2;
|
|
|
|
nodes[5].label = 3;
|
|
|
|
nodes[6].label = 4;
|
|
|
|
nodes[7].label = 1;
|
|
|
|
nodes[4].label = 2;
|
|
|
|
nodes[2].label = 3;
|
|
|
|
nodes[1].label = 4;
|
2023-08-04 06:55:19 +00:00
|
|
|
|
2023-08-02 07:53:17 +00:00
|
|
|
index_nodes(nodes);
|
|
|
|
scale_nodes(nodes, 0.75);
|
2023-07-27 23:55:31 +00:00
|
|
|
const links = auto_detect_edges(nodes, 6);
|
2023-07-24 00:20:38 +00:00
|
|
|
|
2023-07-24 23:55:33 +00:00
|
|
|
return {
|
2023-10-31 23:22:26 +00:00
|
|
|
name: '16-cell',
|
2023-07-27 22:16:47 +00:00
|
|
|
nodes: nodes,
|
2023-07-29 06:23:08 +00:00
|
|
|
links: links,
|
|
|
|
geometry: {
|
2023-07-30 07:56:01 +00:00
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
2023-11-01 00:40:23 +00:00
|
|
|
},
|
|
|
|
options: [ { name: '--' }]
|
2023-07-27 22:16:47 +00:00
|
|
|
};
|
2023-07-24 00:20:38 +00:00
|
|
|
};
|
|
|
|
|
2023-07-24 06:28:23 +00:00
|
|
|
|
|
|
|
|
2023-07-27 22:16:47 +00:00
|
|
|
export const tesseract = () => {
|
2023-08-02 07:53:17 +00:00
|
|
|
const nodes = PERMUTE.coordinates([1, 1, 1, 1], 0);
|
|
|
|
index_nodes(nodes);
|
2023-08-06 08:54:32 +00:00
|
|
|
|
|
|
|
for( const n of nodes ) {
|
|
|
|
if( n.x * n.y * n.z * n.w > 0 ) {
|
2023-09-01 09:00:55 +00:00
|
|
|
n.label = 2;
|
|
|
|
} else {
|
2023-08-06 08:54:32 +00:00
|
|
|
n.label = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 07:53:17 +00:00
|
|
|
scale_nodes(nodes, Math.sqrt(2) / 2);
|
2023-07-27 22:16:47 +00:00
|
|
|
const links = auto_detect_edges(nodes, 4);
|
2023-11-01 00:14:57 +00:00
|
|
|
links.map((l) => { l.label = 0 });
|
|
|
|
|
|
|
|
for( const p of [ 1, 2 ] ) {
|
|
|
|
const nodes16 = nodes.filter((n) => n.label === p);
|
|
|
|
const links16 = auto_detect_edges(nodes16, 6);
|
|
|
|
links16.map((l) => l.label = p);
|
|
|
|
links.push(...links16);
|
|
|
|
}
|
|
|
|
|
2023-07-24 23:34:53 +00:00
|
|
|
|
2023-07-27 22:16:47 +00:00
|
|
|
return {
|
2023-10-31 23:22:26 +00:00
|
|
|
name: 'tesseract',
|
2023-07-27 22:16:47 +00:00
|
|
|
nodes: nodes,
|
2023-07-29 06:23:08 +00:00
|
|
|
links: links,
|
|
|
|
geometry: {
|
2023-07-30 07:56:01 +00:00
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
2023-10-31 23:22:26 +00:00
|
|
|
},
|
|
|
|
options: [
|
2023-11-01 00:40:23 +00:00
|
|
|
{ name: 'none', links: [ 0 ] },
|
2023-11-01 00:14:57 +00:00
|
|
|
{ name: 'one 16-cell', links: [ 0, 1 ] },
|
|
|
|
{ name: 'both 16-cells', links: [ 0, 1, 2 ] },
|
2023-10-31 23:22:26 +00:00
|
|
|
],
|
2023-07-27 22:16:47 +00:00
|
|
|
};
|
2023-07-24 01:45:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-04 05:14:25 +00:00
|
|
|
const CELL24_INDEXING = {
|
2023-09-01 09:00:55 +00:00
|
|
|
x: { y: 1, z: 3, w: 2 },
|
|
|
|
y: { z: 2, w: 3 },
|
|
|
|
z: { w: 1 }
|
2023-08-04 05:14:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-09-06 08:03:44 +00:00
|
|
|
function node_by_id(nodes, nid) {
|
|
|
|
const ns = nodes.filter((n) => n.id === nid);
|
|
|
|
return ns[0];
|
|
|
|
}
|
|
|
|
|
2023-07-24 01:45:30 +00:00
|
|
|
|
|
|
|
export const cell24 = () => {
|
2023-08-02 07:53:17 +00:00
|
|
|
const nodes = PERMUTE.coordinates([0, 0, 1, 1], 0);
|
2023-08-04 05:21:02 +00:00
|
|
|
|
|
|
|
for( const n of nodes ) {
|
|
|
|
const axes = ['x', 'y', 'z', 'w'].filter((a) => n[a] !== 0);
|
|
|
|
n.label = CELL24_INDEXING[axes[0]][axes[1]];
|
|
|
|
}
|
|
|
|
|
2023-08-02 07:53:17 +00:00
|
|
|
index_nodes(nodes);
|
2023-08-04 05:21:02 +00:00
|
|
|
const links = auto_detect_edges(nodes, 8);
|
2023-11-01 00:43:54 +00:00
|
|
|
links.map((l) => l.label = 0);
|
2023-07-24 01:45:30 +00:00
|
|
|
|
2023-11-01 00:43:54 +00:00
|
|
|
for( const p of [ 1, 2, 3 ] ) {
|
|
|
|
const nodes16 = nodes.filter((n) => n.label === p);
|
|
|
|
const links16 = auto_detect_edges(nodes16, 6);
|
|
|
|
links16.map((l) => l.label = p);
|
|
|
|
links.push(...links16);
|
|
|
|
}
|
2023-09-09 07:50:43 +00:00
|
|
|
// links.map((l) => {
|
|
|
|
// const ls = [ l.source, l.target ].map((nid) => node_by_id(nodes, nid).label);
|
|
|
|
// for ( const c of [1, 2, 3] ) {
|
|
|
|
// if( ! ls.includes(c) ) {
|
|
|
|
// l.label = c
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// });
|
2023-09-06 08:03:44 +00:00
|
|
|
|
2023-07-24 23:34:53 +00:00
|
|
|
return {
|
2023-11-01 00:43:54 +00:00
|
|
|
name: '24-cell',
|
2023-07-24 23:34:53 +00:00
|
|
|
nodes: nodes,
|
2023-07-29 06:23:08 +00:00
|
|
|
links: links,
|
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
2023-10-31 23:22:26 +00:00
|
|
|
},
|
|
|
|
base: {},
|
|
|
|
options: [
|
2023-11-01 00:43:54 +00:00
|
|
|
{ name: 'none', links: [ 0 ] },
|
|
|
|
{ name: 'one 16-cell', links: [ 0, 1 ] },
|
|
|
|
{ name: 'three 16-cells', links: [ 0, 1, 2, 3 ] }
|
2023-10-31 23:22:26 +00:00
|
|
|
]
|
2023-07-24 23:34:53 +00:00
|
|
|
};
|
2023-07-24 00:39:11 +00:00
|
|
|
}
|
2023-07-24 00:20:38 +00:00
|
|
|
|
2023-07-27 05:06:25 +00:00
|
|
|
|
2023-09-09 07:50:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-07-28 07:06:42 +00:00
|
|
|
// face detection for the 120-cell
|
|
|
|
|
|
|
|
// NOTE: all of these return node ids, not nodes
|
|
|
|
|
|
|
|
// return all the links which connect to a node
|
|
|
|
|
|
|
|
function nodes_links(links, nodeid) {
|
|
|
|
return links.filter((l) => l.source === nodeid || l.target === nodeid);
|
|
|
|
}
|
|
|
|
|
|
|
|
// filter to remove a link to a given id from a set of links
|
|
|
|
|
|
|
|
function not_to_this(link, nodeid) {
|
|
|
|
return !(link.source === nodeid || link.target === nodeid);
|
|
|
|
}
|
|
|
|
|
|
|
|
// given nodes n1, n2, return all neighbours of n2 which are not n1
|
|
|
|
|
|
|
|
function unmutuals(links, n1id, n2id) {
|
|
|
|
const nlinks = nodes_links(links, n2id).filter((l) => not_to_this(l, n1id));
|
|
|
|
return nlinks.map((l) => {
|
|
|
|
if( l.source === n2id ) {
|
|
|
|
return l.target;
|
|
|
|
} else {
|
|
|
|
return l.source;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function fingerprint(ids) {
|
|
|
|
const sids = [...ids];
|
|
|
|
sids.sort();
|
|
|
|
return sids.join(',');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function auto_120cell_faces(links) {
|
|
|
|
const faces = [];
|
|
|
|
const seen = {};
|
|
|
|
let id = 1;
|
|
|
|
for( const edge of links ) {
|
|
|
|
const v1 = edge.source;
|
|
|
|
const v2 = edge.target;
|
|
|
|
const n1 = unmutuals(links, v2, v1);
|
|
|
|
const n2 = unmutuals(links, v1, v2);
|
|
|
|
const shared = [];
|
|
|
|
for( const a of n1 ) {
|
|
|
|
const an = unmutuals(links, v1, a);
|
|
|
|
for( const d of n2 ) {
|
|
|
|
const dn = unmutuals(links, v2, d);
|
|
|
|
for( const x of an ) {
|
|
|
|
for( const y of dn ) {
|
|
|
|
if( x == y ) {
|
|
|
|
shared.push([v1, a, x, d, v2])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( shared.length !== 3 ) {
|
|
|
|
console.log(`Bad shared faces for ${edge.id} ${v1} ${v2}`);
|
|
|
|
}
|
|
|
|
for( const face of shared ) {
|
|
|
|
const fp = fingerprint(face);
|
|
|
|
if( !seen[fp] ) {
|
|
|
|
faces.push({ id: id, nodes: face });
|
|
|
|
id++;
|
|
|
|
seen[fp] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return faces;
|
|
|
|
}
|
|
|
|
|
2023-07-27 05:06:25 +00:00
|
|
|
|
2023-08-06 08:54:32 +00:00
|
|
|
|
2024-04-06 22:10:26 +00:00
|
|
|
export function make_120cell_vertices() {
|
2023-07-27 21:18:27 +00:00
|
|
|
const phi = 0.5 * (1 + Math.sqrt(5));
|
|
|
|
const r5 = Math.sqrt(5);
|
|
|
|
const phi2 = phi * phi;
|
|
|
|
const phiinv = 1 / phi;
|
|
|
|
const phi2inv = 1 / phi2;
|
|
|
|
|
|
|
|
const nodes = [
|
|
|
|
PERMUTE.coordinates([0, 0, 2, 2], 0),
|
2023-08-11 08:07:12 +00:00
|
|
|
PERMUTE.coordinates([1, 1, 1, r5], 0),
|
|
|
|
PERMUTE.coordinates([phi, phi, phi, phi2inv], 0),
|
|
|
|
PERMUTE.coordinates([phiinv, phiinv, phiinv, phi2], 0),
|
2023-07-27 21:18:27 +00:00
|
|
|
|
2023-08-11 08:07:12 +00:00
|
|
|
PERMUTE.coordinates([phi2, phi2inv, 1, 0], 0, true),
|
|
|
|
PERMUTE.coordinates([r5, phiinv, phi, 0], 0, true),
|
|
|
|
PERMUTE.coordinates([2, 1, phi, phiinv], 0, true),
|
2023-07-27 21:18:27 +00:00
|
|
|
].flat();
|
2023-08-02 07:53:17 +00:00
|
|
|
index_nodes(nodes);
|
|
|
|
scale_nodes(nodes, 0.5);
|
|
|
|
return nodes;
|
2023-07-27 21:18:27 +00:00
|
|
|
}
|
|
|
|
|
2023-08-06 08:54:32 +00:00
|
|
|
|
|
|
|
|
2023-10-26 23:42:35 +00:00
|
|
|
|
|
|
|
|
2023-08-06 01:26:23 +00:00
|
|
|
function label_nodes(nodes, ids, label) {
|
|
|
|
nodes.filter((n) => ids.includes(n.id)).map((n) => n.label = label);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-27 21:18:27 +00:00
|
|
|
|
2023-08-11 11:08:39 +00:00
|
|
|
|
2023-08-19 23:46:30 +00:00
|
|
|
function label_faces_120cell(nodes, faces, cfaces, label) {
|
2023-08-16 22:32:41 +00:00
|
|
|
const ns = new Set();
|
|
|
|
for( const fid of cfaces ) {
|
|
|
|
const face = faces.filter((f)=> f.id === fid );
|
|
|
|
if( face.length > 0 ) {
|
|
|
|
for ( const nid of face[0].nodes ) {
|
|
|
|
ns.add(nid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-19 23:46:30 +00:00
|
|
|
label_nodes(nodes, Array.from(ns), label);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-27 22:31:45 +00:00
|
|
|
function link_labels(nodes, link) {
|
|
|
|
const n1 = nodes.filter((n) => n.id === link.source);
|
|
|
|
const n2 = nodes.filter((n) => n.id === link.target);
|
|
|
|
return [ n1[0].label, n2[0].label ];
|
2023-08-25 08:08:22 +00:00
|
|
|
}
|
2023-08-11 11:08:39 +00:00
|
|
|
|
2023-08-20 01:18:29 +00:00
|
|
|
|
2023-11-01 01:52:59 +00:00
|
|
|
// version of the 120-cell where nodes are partitioned by
|
|
|
|
// layer and the links follow that
|
2023-08-20 01:18:29 +00:00
|
|
|
|
2023-10-26 23:42:35 +00:00
|
|
|
export const cell120_layered = (max) => {
|
|
|
|
const nodes = make_120cell_vertices();
|
|
|
|
const links = auto_detect_edges(nodes, 4);
|
|
|
|
|
2023-11-02 03:13:45 +00:00
|
|
|
nodes.map((n) => n.label = 9); // make all invisible by default
|
|
|
|
|
2023-11-04 05:30:46 +00:00
|
|
|
for (const cstr in CELLINDEX.LAYERS120 ) {
|
|
|
|
label_nodes(nodes, CELLINDEX.LAYERS120[cstr], Number(cstr));
|
2023-11-02 03:13:45 +00:00
|
|
|
}
|
2023-10-26 23:42:35 +00:00
|
|
|
|
2023-11-01 01:52:59 +00:00
|
|
|
links.map((l) => {
|
|
|
|
const labels = link_labels(nodes, l);
|
|
|
|
if( labels[0] >= labels[1] ) {
|
|
|
|
l.label = labels[0];
|
|
|
|
} else {
|
|
|
|
l.label = labels[1];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const options = [];
|
|
|
|
const layers = [];
|
|
|
|
|
2023-11-02 03:13:45 +00:00
|
|
|
for( const i of [ 0, 1, 2, 3, 4, 5, 6, 7 ] ) {
|
2023-11-01 01:52:59 +00:00
|
|
|
layers.push(i);
|
2023-11-02 05:36:18 +00:00
|
|
|
options.push({
|
2023-11-04 05:30:46 +00:00
|
|
|
name: CELLINDEX.LAYER_NAMES[i],
|
2023-11-01 01:52:59 +00:00
|
|
|
links: [...layers],
|
|
|
|
nodes: [...layers]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-10-26 23:42:35 +00:00
|
|
|
return {
|
2023-10-31 23:22:26 +00:00
|
|
|
name: '120-cell layered',
|
2023-10-27 06:32:44 +00:00
|
|
|
nodes: nodes,
|
|
|
|
links: links,
|
2023-10-26 23:42:35 +00:00
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
|
|
|
},
|
2023-11-02 05:26:48 +00:00
|
|
|
nolink2opacity: true,
|
2023-11-01 01:52:59 +00:00
|
|
|
options: options
|
2023-10-26 23:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
2023-09-02 07:11:08 +00:00
|
|
|
|
2023-10-26 23:18:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-10-31 23:22:26 +00:00
|
|
|
export const cell120_inscribed = () => {
|
2023-09-02 07:11:08 +00:00
|
|
|
const nodes = make_120cell_vertices();
|
|
|
|
const links = auto_detect_edges(nodes, 4);
|
|
|
|
|
2023-11-04 05:30:46 +00:00
|
|
|
for( const cstr in CELLINDEX.INDEX120 ) {
|
|
|
|
label_nodes(nodes, CELLINDEX.INDEX120[cstr], Number(cstr));
|
2023-11-02 03:13:45 +00:00
|
|
|
}
|
2023-09-02 07:11:08 +00:00
|
|
|
|
2023-10-31 23:22:26 +00:00
|
|
|
links.map((l) => l.label = 0);
|
2023-09-02 07:11:08 +00:00
|
|
|
|
2023-10-31 23:22:26 +00:00
|
|
|
for( const p of [ 1, 2, 3, 4, 5 ]) {
|
2023-09-02 07:11:08 +00:00
|
|
|
const nodes600 = nodes.filter((n) => n.label === p);
|
|
|
|
const links600 = auto_detect_edges(nodes600, 12);
|
|
|
|
links600.map((l) => l.label = p);
|
2023-10-31 23:22:26 +00:00
|
|
|
links.push(...links600);
|
2023-09-02 07:11:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2023-11-01 00:49:42 +00:00
|
|
|
name: '120-cell',
|
2023-09-02 07:11:08 +00:00
|
|
|
nodes: nodes,
|
2023-10-31 23:22:26 +00:00
|
|
|
links: links,
|
2023-09-02 07:11:08 +00:00
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
|
|
|
},
|
2023-10-31 23:22:26 +00:00
|
|
|
options: [
|
|
|
|
{ name: "none", links: [ 0 ]},
|
2023-11-01 00:49:42 +00:00
|
|
|
{ name: "one inscribed 600-cell", links: [ 0, 1 ] },
|
|
|
|
{ name: "five inscribed 600-cells", links: [ 0, 1, 2, 3, 4, 5 ] }
|
2023-10-31 23:22:26 +00:00
|
|
|
]
|
2023-09-02 07:11:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-06 08:03:44 +00:00
|
|
|
|
2023-09-02 07:11:08 +00:00
|
|
|
|
2023-08-02 07:53:17 +00:00
|
|
|
|
|
|
|
|
2023-08-04 03:49:39 +00:00
|
|
|
function partition_coord(i, coords, invert) {
|
|
|
|
const j = invert ? -i : i;
|
|
|
|
if( j >= 0 ) {
|
|
|
|
return coords[j];
|
|
|
|
}
|
|
|
|
return "-" + coords[-j];
|
|
|
|
}
|
|
|
|
|
|
|
|
function partition_fingerprint(n, coords, invert) {
|
|
|
|
const p = ['x','y','z','w'].map((a) => partition_coord(n[a], coords, invert));
|
|
|
|
const fp = p.join(',');
|
|
|
|
return fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function label_vertex(n, coords, partition) {
|
|
|
|
const fp = partition_fingerprint(n, coords, false);
|
|
|
|
if( fp in partition ) {
|
|
|
|
return partition[fp];
|
|
|
|
} else {
|
|
|
|
const ifp = partition_fingerprint(n, coords, true);
|
|
|
|
if( ifp in partition ) {
|
|
|
|
return partition[ifp];
|
|
|
|
}
|
|
|
|
console.log(`Map for ${fp} ${ifp} not found`);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 07:53:17 +00:00
|
|
|
|
2023-08-04 01:10:57 +00:00
|
|
|
function map_coord(i, coords, values) {
|
|
|
|
if( i >= 0 ) {
|
|
|
|
return values[coords[i]];
|
2023-08-02 07:53:17 +00:00
|
|
|
}
|
2023-08-04 01:10:57 +00:00
|
|
|
return -values[coords[-i]];
|
2023-08-02 07:53:17 +00:00
|
|
|
}
|
|
|
|
|
2023-08-03 07:06:03 +00:00
|
|
|
|
2023-11-03 01:57:40 +00:00
|
|
|
export function make_600cell_vertices() {
|
2023-08-04 01:10:57 +00:00
|
|
|
const coords = {
|
|
|
|
0: '0',
|
|
|
|
1: '1',
|
|
|
|
2: '2',
|
|
|
|
3: 't',
|
|
|
|
4: 'k'
|
|
|
|
};
|
|
|
|
const t = 0.5 * (1 + Math.sqrt(5));
|
|
|
|
const values = {
|
|
|
|
'0': 0,
|
|
|
|
'1': 1,
|
|
|
|
'2': 2,
|
|
|
|
't': t,
|
|
|
|
'k': 1 / t
|
|
|
|
};
|
2023-08-03 07:06:03 +00:00
|
|
|
|
2023-08-04 01:10:57 +00:00
|
|
|
const nodes = [
|
2023-08-04 03:49:39 +00:00
|
|
|
PERMUTE.coordinates([0, 0, 0, 2], 0),
|
2023-08-04 01:10:57 +00:00
|
|
|
PERMUTE.coordinates([1, 1, 1, 1], 0),
|
2023-08-04 03:49:39 +00:00
|
|
|
PERMUTE.coordinates([3, 1, 4, 0], 0, true)
|
2023-08-04 01:10:57 +00:00
|
|
|
].flat();
|
2023-08-03 07:06:03 +00:00
|
|
|
|
2023-08-04 03:49:39 +00:00
|
|
|
for( const n of nodes ) {
|
2023-11-04 05:30:46 +00:00
|
|
|
n.label = label_vertex(n, coords, CELLINDEX.PARTITION600);
|
2023-08-04 03:49:39 +00:00
|
|
|
}
|
|
|
|
|
2023-08-04 01:10:57 +00:00
|
|
|
for( const n of nodes ) {
|
|
|
|
for( const a of [ 'x', 'y', 'z', 'w'] ) {
|
|
|
|
n[a] = map_coord(n[a], coords, values);
|
2023-08-03 07:06:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-04 03:49:39 +00:00
|
|
|
|
2023-08-04 01:10:57 +00:00
|
|
|
index_nodes(nodes);
|
|
|
|
scale_nodes(nodes, 0.75);
|
|
|
|
return nodes;
|
|
|
|
}
|
2023-08-03 07:06:03 +00:00
|
|
|
|
2023-08-04 05:04:52 +00:00
|
|
|
function get_node(nodes, id) {
|
|
|
|
const ns = nodes.filter((n) => n.id === id);
|
|
|
|
if( ns ) {
|
|
|
|
return ns[0]
|
|
|
|
} else {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function audit_link_labels(nodes, links) {
|
|
|
|
for( const l of links ) {
|
|
|
|
const n1 = get_node(nodes, l.source);
|
|
|
|
const n2 = get_node(nodes, l.target);
|
|
|
|
if( n1.label === n2.label ) {
|
|
|
|
console.log(`link ${l.id} joins ${n1.id} ${n2.id} with label ${n2.label}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-02 07:53:17 +00:00
|
|
|
|
|
|
|
|
2023-07-27 21:18:27 +00:00
|
|
|
|
|
|
|
export const cell600 = () => {
|
|
|
|
const nodes = make_600cell_vertices();
|
2023-07-31 07:24:26 +00:00
|
|
|
const links = auto_detect_edges(nodes, 12);
|
2023-08-04 05:04:52 +00:00
|
|
|
|
2023-11-01 00:49:42 +00:00
|
|
|
links.map((l) => l.label = 0);
|
2023-09-06 08:03:44 +00:00
|
|
|
|
2023-11-01 00:49:42 +00:00
|
|
|
for( const p of [1, 2, 3, 4, 5]) {
|
2023-09-06 08:03:44 +00:00
|
|
|
const nodes24 = nodes.filter((n) => n.label === p);
|
|
|
|
const links24 = auto_detect_edges(nodes24, 8);
|
|
|
|
links24.map((l) => l.label = p);
|
2023-11-01 00:49:42 +00:00
|
|
|
links.push(...links24);
|
2023-09-06 08:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2023-11-01 00:49:42 +00:00
|
|
|
name: '600-cell',
|
2023-09-06 08:03:44 +00:00
|
|
|
nodes: nodes,
|
2023-11-01 00:49:42 +00:00
|
|
|
links: links,
|
2023-09-06 08:03:44 +00:00
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
|
|
|
},
|
2023-11-01 00:49:42 +00:00
|
|
|
options: [
|
|
|
|
{ name: "none", links: [ 0 ]},
|
|
|
|
{ name: "one 24-cell", links: [ 0, 1 ] },
|
|
|
|
{ name: "five 24-cells", links: [ 0, 1, 2, 3, 4, 5 ] }
|
|
|
|
]
|
2023-09-06 08:03:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-04 05:30:46 +00:00
|
|
|
|
|
|
|
export const cell600_layered = () => {
|
|
|
|
const nodes = make_600cell_vertices();
|
|
|
|
const links = auto_detect_edges(nodes, 12);
|
|
|
|
|
|
|
|
nodes.map((n) => n.label = 9); // make all invisible by default
|
|
|
|
|
|
|
|
for (const cstr in CELLINDEX.LAYERS600 ) {
|
|
|
|
label_nodes(nodes, CELLINDEX.LAYERS600[cstr], Number(cstr));
|
|
|
|
}
|
|
|
|
|
|
|
|
links.map((l) => {
|
|
|
|
const labels = link_labels(nodes, l);
|
|
|
|
if( labels[0] >= labels[1] ) {
|
|
|
|
l.label = labels[0];
|
|
|
|
} else {
|
|
|
|
l.label = labels[1];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const options = [];
|
|
|
|
const layers = [];
|
|
|
|
|
|
|
|
for( const i of [ 0, 1, 2, 3, 4, 5, 6, 7 ] ) {
|
|
|
|
layers.push(i);
|
|
|
|
options.push({
|
|
|
|
name: CELLINDEX.LAYER_NAMES[i],
|
|
|
|
links: [...layers],
|
|
|
|
nodes: [...layers]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
name: '600-cell layered',
|
|
|
|
nodes: nodes,
|
|
|
|
links: links,
|
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
|
|
|
},
|
|
|
|
nolink2opacity: true,
|
|
|
|
options: options
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-06 22:10:26 +00:00
|
|
|
export const snub24cell = () => {
|
|
|
|
const nodes600 = make_600cell_vertices();
|
|
|
|
const links600 = auto_detect_edges(nodes600, 12);
|
2023-11-04 05:30:46 +00:00
|
|
|
|
2024-04-06 22:10:26 +00:00
|
|
|
const nodes = nodes600.filter((n) => n.label != 1);
|
|
|
|
const links = links600.filter((l) => {
|
|
|
|
const sn = node_by_id(nodes, l.source);
|
|
|
|
const tn = node_by_id(nodes, l.target);
|
|
|
|
return sn && tn;
|
|
|
|
});
|
|
|
|
|
|
|
|
links.map((l) => l.label = 0);
|
|
|
|
|
|
|
|
return {
|
|
|
|
name: 'snub 24-cell',
|
|
|
|
nodes: nodes,
|
|
|
|
links: links,
|
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
|
|
|
},
|
|
|
|
options: [ { name: "--" } ],
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-11-04 05:30:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-14 06:42:20 +00:00
|
|
|
function make_dodecahedron_vertices() {
|
|
|
|
const phi = 0.5 * (1 + Math.sqrt(5));
|
|
|
|
const phiinv = 1 / phi;
|
|
|
|
|
|
|
|
const nodes = [
|
2023-09-15 08:33:33 +00:00
|
|
|
{ x: 1, y: 1, z: 1, w: 0, label: 4 },
|
|
|
|
{ x: 1, y: 1, z: -1, w: 0, label: 3 },
|
|
|
|
{ x: 1, y: -1, z: 1, w: 0, label: 3 },
|
|
|
|
{ x: 1, y: -1, z: -1, w: 0, label: 2 },
|
|
|
|
|
|
|
|
{ x: -1, y: 1, z: 1, w: 0, label: 3 },
|
|
|
|
{ x: -1, y: 1, z: -1, w: 0, label: 1 },
|
|
|
|
{ x: -1, y: -1, z: 1, w: 0, label: 5 },
|
|
|
|
{ x: -1, y: -1, z: -1, w: 0, label: 3 },
|
|
|
|
|
|
|
|
{ x: 0, y: phi, z: phiinv, w: 0, label: 5 },
|
|
|
|
{ x: 0, y: phi, z: -phiinv, w: 0 , label: 2 },
|
|
|
|
{ x: 0, y: -phi, z: phiinv, w: 0, label: 4 },
|
|
|
|
{ x: 0, y: -phi, z: -phiinv, w: 0 , label: 1 },
|
|
|
|
|
|
|
|
{ x: phiinv, y: 0, z: phi, w: 0 , label: 2},
|
|
|
|
{ x: phiinv, y: 0, z: -phi, w: 0 , label: 4},
|
|
|
|
{ x: -phiinv, y: 0, z: phi, w: 0 , label: 1},
|
|
|
|
{ x: -phiinv, y: 0, z: -phi, w: 0 , label: 5},
|
|
|
|
|
|
|
|
{ x: phi, y: phiinv, z:0, w: 0 , label: 1},
|
|
|
|
{ x: phi, y: -phiinv, z:0, w: 0 , label: 5},
|
|
|
|
{ x: -phi, y: phiinv, z:0, w: 0 , label: 4},
|
|
|
|
{ x: -phi, y: -phiinv, z:0, w: 0 , label: 2},
|
2023-09-14 06:42:20 +00:00
|
|
|
];
|
2023-09-15 08:33:33 +00:00
|
|
|
index_nodes(nodes);
|
2023-09-14 06:42:20 +00:00
|
|
|
return nodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const dodecahedron = () => {
|
|
|
|
const nodes = make_dodecahedron_vertices();
|
|
|
|
const links = auto_detect_edges(nodes, 3);
|
2023-11-01 00:52:48 +00:00
|
|
|
links.map((l) => l.label = 0);
|
2023-09-14 06:42:20 +00:00
|
|
|
|
2023-11-01 00:52:48 +00:00
|
|
|
for( const p of [ 1, 2, 3, 4, 5 ]) {
|
2023-09-15 08:33:33 +00:00
|
|
|
const tetran = nodes.filter((n) => n.label === p);
|
|
|
|
const tetral = auto_detect_edges(tetran, 3);
|
|
|
|
tetral.map((l) => l.label = p);
|
2023-11-01 00:52:48 +00:00
|
|
|
links.push(...tetral);
|
2023-09-15 08:33:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2023-11-01 00:52:48 +00:00
|
|
|
name: 'dodecahedron',
|
2023-09-15 08:33:33 +00:00
|
|
|
nodes: nodes,
|
2023-11-01 00:52:48 +00:00
|
|
|
links: links,
|
2023-09-15 08:33:33 +00:00
|
|
|
geometry: {
|
|
|
|
node_size: 0.02,
|
|
|
|
link_size: 0.02
|
|
|
|
},
|
2023-11-01 00:52:48 +00:00
|
|
|
options: [
|
|
|
|
{ name: "none", links: [ 0 ]},
|
|
|
|
{ name: "one tetrahedron", links: [ 0, 1 ] },
|
|
|
|
{ name: "five tetrahedra", links: [ 0, 1, 2, 3, 4, 5 ] }
|
|
|
|
]
|
|
|
|
|
2023-09-15 08:33:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-01 00:14:57 +00:00
|
|
|
export const build_all = () => {
|
|
|
|
return [
|
2023-11-01 00:52:48 +00:00
|
|
|
dodecahedron(),
|
|
|
|
cell5(),
|
2023-11-01 00:40:23 +00:00
|
|
|
cell16(),
|
2023-11-01 00:14:57 +00:00
|
|
|
tesseract(),
|
2023-11-01 00:43:54 +00:00
|
|
|
cell24(),
|
2024-04-06 22:10:26 +00:00
|
|
|
snub24cell(),
|
2023-11-01 00:49:42 +00:00
|
|
|
cell600(),
|
2023-11-04 05:30:46 +00:00
|
|
|
cell600_layered(),
|
2023-11-01 01:52:59 +00:00
|
|
|
cell120_inscribed(),
|
|
|
|
cell120_layered()
|
2023-11-01 00:14:57 +00:00
|
|
|
];
|
|
|
|
}
|