move helper classes to helper folder

This commit is contained in:
casperlamboo 2017-07-19 11:02:42 +02:00
parent 73f0433e00
commit 1e16c741a0
4 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import Shape from 'Doodle3D/clipper-js';
import Slice from '../Slice.js';
import Slice from './helpers/Slice.js';
import { CLEAN_DELTA, PRECISION } from '../constants.js';

View File

@ -1,4 +1,4 @@
import GCode from '../GCode.js';
import GCode from './helpers/GCode.js';
export default function slicesToGCode(slices, settings) {
const gcode = new GCode(settings);