fix imports

This commit is contained in:
casperlamboo 2017-11-14 18:23:50 +01:00
parent b5eaf7f32a
commit bee9d11097
2 changed files with 2 additions and 4 deletions

View File

@ -5,8 +5,7 @@ import * as actions from '../../../actions/index.js';
import { SHAPE_TYPE_PROPERTIES } from '../../../constants/shapeTypeProperties.js';
import { LINE_WIDTH, CLIPPER_PRECISION } from '../../../constants/d2Constants.js';
import { shapeToPoints } from '../../../shape/shapeToPoints.js';
import { applyMatrixOnShape } from '../../../utils/VectorUtils.js';
import { pathToVectorPath } from '../../../shape/shapeDataUtils.js';
import { applyMatrixOnShape, pathToVectorPath } from '../../../utils/VectorUtils.js';
import { addObject } from '../../../reducer/objectReducers.js';
import subtractShapeFromState from '../../../utils/subtractShapeFromState.js';
import { getColor, getFirst, filterType, getObjectsFromIds } from '../../../utils/objectSelectors.js';

View File

@ -1,5 +1,4 @@
import { applyMatrixOnPath } from './vectorUtils.js';
import { pathToVectorPath } from '../shape/shapeDataUtils.js';
import { applyMatrixOnPath, pathToVectorPath } from './vectorUtils.js';
import { Matrix } from 'cal';
import TraceWorker from 'workers/worker.js';
import { getPixel } from './colorUtils.js';