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