Removed old inscribed tesseract

feature-120-cell-layers
Mike Lynch 2023-11-01 11:15:18 +11:00
parent 76f463ae03
commit 71c6aa62ac
1 changed files with 0 additions and 21 deletions

View File

@ -160,27 +160,6 @@ export const tesseract = () => {
}
const tesseract_some_inscribed = (ps) => {
const t = tesseract();
const i_links = [];
for( const p of ps ) {
const nodes16 = t.nodes.filter((n) => n.label === p);
const links16 = auto_detect_edges(nodes16, 6);
links16.map((l) => l.label = p);
i_links.push(...links16);
}
t.links.push(...i_links);
return t;
}
export const tesseract_inscribed = () => tesseract_some_inscribed([1]);
export const tesseract_all_inscribed = () => tesseract_some_inscribed([1,2]);
const CELL24_INDEXING = {
x: { y: 1, z: 3, w: 2 },
y: { z: 2, w: 3 },