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