import { Component } from '@serpentity/serpentity'; /** * Stores three values of phase, intended for a 3D parametric curve. */ export default class TriplePhase extends Component { constructor(config) { super(config); this.a = this.a || Math.PI * Math.random(); this.b = this.b || Math.PI * Math.random(); this.c = this.c || Math.PI * Math.random(); } };