]> git.r.bdr.sh - rbdr/lissajous/blame - lib/components/triple_amplitude.js
Adjust the frequency
[rbdr/lissajous] / lib / components / triple_amplitude.js
CommitLineData
362f9116
RBR
1import { Component } from '@serpentity/serpentity';
2
3export default class TripleAmplitude extends Component {
4 constructor(config) {
5
6 super(config);
7
8 this.a = this.a || Math.random();
9 this.b = this.b || Math.random();
10 this.c = this.c || Math.random();
11 }
12};