diff options
Diffstat (limited to 'levelSelect.js')
-rw-r--r-- | levelSelect.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/levelSelect.js b/levelSelect.js index f441f06..04c65a6 100644 --- a/levelSelect.js +++ b/levelSelect.js @@ -36,15 +36,15 @@ const levels = { ], 'sinusoidal 0': [ - ['monopole harvesting'], + ['parabolic 4'], buildLevel(t => Math.sin(t), t => t, [...Array(6).keys()].map(x => 0.5 * Math.PI * x)), ], 'sinusoidal 1': [ - ['monopole harvesting'], + ['parabolic 4'], buildLevel(t => t-4, t => 4*Math.sin(t), [...Array(12).keys()].map(x => 0.25 * Math.PI * x)), ], '(co)sinusoidal 2': [ - ['monopole harvesting'], + ['parabolic 4'], buildLevel(t => t-4, t => 4*Math.cos(t), [...Array(12).keys()].map(x => 0.25 * Math.PI * x)), ], 'orbital': [ |