From 50214adbe3b58fb2686e606950642fe97d753ec8 Mon Sep 17 00:00:00 2001 From: Mike Lynch Date: Wed, 1 Nov 2023 11:40:23 +1100 Subject: [PATCH] Reinstated 5-cell and 16-cell --- polytopes.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/polytopes.js b/polytopes.js index 6db8e13..d27557c 100644 --- a/polytopes.js +++ b/polytopes.js @@ -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() ];