]> git.r.bdr.sh - rbdr/lissajous/blob - lib/components/triple_frequency.js
1f118b90ebb30eac84eeaa3fdef32a9986012162
[rbdr/lissajous] / lib / components / triple_frequency.js
1 import { Component } from '@serpentity/serpentity';
2
3 export default class TripleFrequency 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 };