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