summaryrefslogtreecommitdiff
path: root/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/App.jsx8
-rw-r--r--src/ui/Controls.jsx15
2 files changed, 15 insertions, 8 deletions
diff --git a/src/ui/App.jsx b/src/ui/App.jsx
index db3d762..a8edc0f 100644
--- a/src/ui/App.jsx
+++ b/src/ui/App.jsx
@@ -20,13 +20,13 @@ export default function App() {
const relabiGenerator = new Relabi({
settings: {
speed: 1.0,
- feedback: 0.2,
+ chaos: 0.2,
},
waves: [
- { shape: "sine", frequency: 0.75, weight: 1 },
+ { shape: "sine", frequency: 0.5, weight: 1 },
{ shape: "sine", frequency: 1.0, weight: 1 },
- { shape: "sine", frequency: 1.617, weight: 1 },
- { shape: "sine", frequency: 3.141, weight: 1 },
+ { shape: "sine", frequency: 1.5, weight: 1 },
+ { shape: "sine", frequency: 2.0, weight: 1 },
],
bounds: [
{
diff --git a/src/ui/Controls.jsx b/src/ui/Controls.jsx
index 3bc1c2e..e8dca45 100644
--- a/src/ui/Controls.jsx
+++ b/src/ui/Controls.jsx
@@ -10,7 +10,14 @@ import Slider from "rc-slider";
import TooltipSlider, { handleRender } from "./TooltipSlider.tsx";
import "rc-slider/assets/index.css";
-const WAVE_SHAPE_NAMES = ["sine", "triangle", "saw", "reverse_saw", "square"];
+const WAVE_SHAPE_NAMES = [
+ "sine",
+ "triangle",
+ "saw",
+ "reverse_saw",
+ "square",
+ "noise",
+];
export default function Controls({ relabi }) {
/**
@@ -130,7 +137,7 @@ export default function Controls({ relabi }) {
type="settings"
index="speed"
onChange={onChange}
- min={-2}
+ min={-3}
max={3}
step={0.01}
defaultValue={Math.log(relabi.settings.speed)}
@@ -145,12 +152,12 @@ export default function Controls({ relabi }) {
<SliderRow>
<ControlSlider
type="settings"
- index="feedback"
+ index="chaos"
onChange={onChange}
min={0}
max={0.5}
step={0.01}
- defaultValue={relabi.settings.feedback}
+ defaultValue={relabi.settings.chaos}
color={"#a88"}
/>
</SliderRow>