Reinstated 5-cell and 16-cell

feature-120-cell-layers
Mike Lynch 2023-11-01 11:40:23 +11:00
parent 71c6aa62ac
commit 50214adbe3
1 changed files with 7 additions and 3 deletions

View File

@ -84,7 +84,8 @@ export const cell5 = () => {
geometry: {
node_size: 0.02,
link_size: 0.02
}
},
options: [ { name: '--' }]
};
};
@ -113,7 +114,8 @@ export const cell16 = () => {
geometry: {
node_size: 0.02,
link_size: 0.02
}
},
options: [ { name: '--' }]
};
};
@ -152,7 +154,7 @@ export const tesseract = () => {
link_size: 0.02
},
options: [
{ name: 'normal', links: [ 0 ] },
{ name: 'none', links: [ 0 ] },
{ name: 'one 16-cell', links: [ 0, 1 ] },
{ name: 'both 16-cells', links: [ 0, 1, 2 ] },
],
@ -775,6 +777,8 @@ export const dodecahedron_all_inscribed = () => dodecahedron_some_inscribed([1,2
export const build_all = () => {
return [
cell5(),
cell16(),
tesseract(),
cell120_inscribed()
];