Dodecahedron detector is working on a single test case

feature-120-cell-index
Mike Lynch 2023-08-20 09:46:30 +10:00
parent 5a09caef93
commit 228d1a91c4
2 changed files with 62 additions and 8 deletions

View File

@ -367,14 +367,8 @@ function naive_label_120cell(nodes, links, n) {
});
}
function manual_label_120cell(nodes, links) {
const faces = auto_120cell_faces(links);
const cfaces = [ 1, 2, 4, 145, 169 ];
function label_faces_120cell(nodes, faces, cfaces, label) {
const ns = new Set();
for( const fid of cfaces ) {
const face = faces.filter((f)=> f.id === fid );
console.log(face);
@ -386,7 +380,22 @@ function manual_label_120cell(nodes, links) {
}
label_nodes(nodes, Array.from(ns), 4);
label_nodes(nodes, Array.from(ns), label);
}
function manual_label_120cell(nodes, links) {
const faces = auto_120cell_faces(links);
//const cfaces = [ 1, 2, 4, 145, 169 ];
label_faces_120cell(nodes, faces, [
1, 2, 4, 169, 626,
145, 149, 553, 173, 171,
147, 554
], 4);
}

View File

@ -312,7 +312,52 @@ function find_dodeca_mutuals(faces, f1, f2) {
return mutuals;
}
function find_dodeca_next(faces, dodeca, f1, f2) {
// of a pair of mutuals, return the one we haven't already got
const m = find_dodeca_mutuals(faces, f1, f2);
if( dodeca.filter((f) => f.id === m[0].id ).length > 0 ) {
m.shift();
}
return m[0];
}
// from any two mutual faces, return all the faces in their dodecahedron
function make_dodecahedron(faces, f1, f2) {
const dodecahedron = [ f1, f2 ];
console.log(`First two: ${f1.id} ${f2.id}`);
// take f1 as the 'center', get the other four around it from f2
const fs = find_dodeca_mutuals(faces, f1, f2);
const f3 = fs[0];
const f6 = fs[1];
dodecahedron.push(f3);
const f4 = find_dodeca_next(faces, dodecahedron, f1, f3);
dodecahedron.push(f4);
const f5 = find_dodeca_next(faces, dodecahedron, f1, f4);
dodecahedron.push(f5);
dodecahedron.push(f6);
// get the next ring
const f7 = find_dodeca_next(faces, dodecahedron, f6, f2);
dodecahedron.push(f7);
const f8 = find_dodeca_next(faces, dodecahedron, f2, f3);
dodecahedron.push(f8);
const f9 = find_dodeca_next(faces, dodecahedron, f3, f4);
dodecahedron.push(f9);
const f10 = find_dodeca_next(faces, dodecahedron, f4, f5);
dodecahedron.push(f10);
const f11 = find_dodeca_next(faces, dodecahedron, f5, f6);
dodecahedron.push(f11);
// get the last
const f12 = find_dodeca_next(faces, dodecahedron, f7, f8);
dodecahedron.push(f12);
return dodecahedron;
}