Go to file
2017-05-13 14:48:48 +02:00
example replace tabs with spaces 2017-05-13 14:48:48 +02:00
src replace tabs with spaces 2017-05-13 14:48:48 +02:00
.gitignore add jspm dependency 2016-08-19 14:05:30 +02:00
jspm.config.js update three.js 2017-01-18 13:30:57 +01:00
package.json update three.js 2017-01-18 13:30:57 +01:00
README.md replace tabs with spaces 2017-05-13 14:48:48 +02:00

Doodle3D-Slicer

JavaScript gcode slicer, Intended to use with the Doodle3D WiFi-Box

Usage

import THREE from 'three.js';
import * as SLICER from 'doodle3d-slicer';

const settings = new SLICER.Settings({
  ...SLICER.printerSettings['ultimaker2go'],
  ...SLICER.userSettings
});

const geometry = new THREE.TorusGeometry(20, 10, 30, 30);

const slicer = new SLICER.Slicer();

slicer.setGeometry(geometry);
slicer.slice(settings, false).then(gcode => {
  document.getElementById('gcode').innerHTML = gcode.replace(/(?:\r\n|\r|\n)/g, '<br />');
});