]> git.r.bdr.sh - rbdr/lissajous/blame - lib/components/triple_frequency.js
Initial commit
[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
8 this.a = Math.random();
9 this.b = Math.random();
10 this.c = Math.random();
11 }
12};