mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-22 13:37:58 +01:00
Create README.md
This commit is contained in:
parent
7304a95276
commit
1b48683738
28
README.md
Normal file
28
README.md
Normal file
@ -0,0 +1,28 @@
|
||||
# Doodle3D-Slicer
|
||||
JavaScript gcode slicer, Intended to use with the Doodle3D WiFi-Box
|
||||
|
||||
# Usage
|
||||
|
||||
```javascript
|
||||
import THREE from 'three.js';
|
||||
import PRINTER_SETTINGS from 'settings/printer_settings.json!';
|
||||
import USER_SETTINGS from 'settings/user_settings.json!';
|
||||
import * as SLICER from 'Doodle3D/Doodle3d-Slicer';
|
||||
|
||||
setTimeout(() => {
|
||||
var settings = new SLICER.Settings();
|
||||
settings.updateConfig(PRINTER_SETTINGS["ultimaker2go"]);
|
||||
settings.updateConfig(USER_SETTINGS);
|
||||
|
||||
var geometry = new THREE.TorusGeometry(20, 10, 30, 30);
|
||||
|
||||
var slicer = new SLICER.Slicer();
|
||||
//var slicer = new SLICER.SlicerWorker();
|
||||
|
||||
slicer.setGeometry(geometry);
|
||||
slicer.onfinish = function (gCode) {
|
||||
document.getElementById('gcode').innerHTML = gCode.replace(/(?:\r\n|\r|\n)/g, '<br />');
|
||||
};
|
||||
slicer.slice(settings);
|
||||
});
|
||||
```
|
Loading…
Reference in New Issue
Block a user