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