From 7f7e79fc7c9dfbfc70f4a7526b072c2f397f26cb Mon Sep 17 00:00:00 2001 From: Mike Lynch Date: Fri, 28 Jul 2023 17:40:39 +1000 Subject: [PATCH] Made 120-cell the default --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 31171d5..8018d42 100644 --- a/main.js +++ b/main.js @@ -7,7 +7,7 @@ import { FourDShape } from './fourDShape.js'; import { GUI } from 'lil-gui'; -const DEFAULT_SHAPE = '5-cell'; +const DEFAULT_SHAPE = '120-cell'; // hacky stuff for 4d rotations @@ -264,4 +264,4 @@ function animate() { renderer.render( scene, camera ); } -animate(); \ No newline at end of file +animate();