import { Component } from '@serpentity/serpentity'; export default class TripleFrequency extends Component { constructor(config) { super(config); this.a = this.a || 2 * Math.PI * Math.random(); this.b = this.b || 2 * Math.PI * Math.random(); this.c = this.c || 2 * Math.PI * Math.random(); } };