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