]> git.r.bdr.sh - rbdr/lissajous/blob - lib/components/radius.js
0efd094ade8bf69719705af4312a7e956a664f1f
[rbdr/lissajous] / lib / components / radius.js
1 import { Component } from '@serpentity/serpentity';
2
3 /**
4 * Stores the radius of a circle or sphere
5 */
6 export default class Radius extends Component {
7 constructor(config) {
8
9 super(config);
10 this.radius = this.radius || 5;
11 }
12 };