From 362f91160b243453578633e3f9af67ce40179d8c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 7 May 2024 22:37:27 +0200 Subject: Make 3D --- lib/components/configuration.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/components/configuration.js (limited to 'lib/components/configuration.js') diff --git a/lib/components/configuration.js b/lib/components/configuration.js new file mode 100644 index 0000000..ddb4a27 --- /dev/null +++ b/lib/components/configuration.js @@ -0,0 +1,9 @@ +import { Component } from '@serpentity/serpentity'; + +export default class Configuration extends Component { + constructor(config) { + + super(config); + this.lineLength = this.lineLength || 1000; + } +}; -- cgit