fix imports

This commit is contained in:
casperlamboo 2017-11-14 17:11:03 +01:00
parent 7e28f8fe97
commit 67300e4e2d
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,8 @@ import ClipperShape from 'clipper-js';
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, applyMatrixOnShape, pathToVectorPath } from '../../../shape/shapeDataUtils.js';
import { shapeToPoints } from '../../../shape/shapeToPoints.js';
import { applyMatrixOnShape, pathToVectorPath } from '../../../shape/shapeDataUtils.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,6 @@
import * as THREE from 'three';
import { shapeToPoints, getPointsBounds } from '../shape/shapeDataUtils.js'
import { shapeToPoints } from '../shape/shapeToPoints.js'
import { getPointsBounds } from '../shape/shapeDataUtils.js'
import { Vector } from 'cal';
import arrayMemoizer from './arrayMemoizer.js';
import memoize from 'memoizee';