feature-120-cell-layers #7

Merged
bombinans merged 19 commits from feature-120-cell-layers into main 2023-11-02 03:15:51 +00:00
Showing only changes of commit 50214adbe3 - Show all commits

View File

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