summaryrefslogtreecommitdiffstats
path: root/src/Morphable.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-10-27 22:43:30 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-10-27 22:43:30 +0200
commita612dc0dd5b911728a7089900138727f1eec549e (patch)
treea5c6864b20d9f862a51e09a62b1e8775284ac5a1 /src/Morphable.js
parent1c75fcaf02ceb144152d59557643c6fdd7264065 (diff)
downloadsvg.js-a612dc0dd5b911728a7089900138727f1eec549e.tar.gz
svg.js-a612dc0dd5b911728a7089900138727f1eec549e.zip
resolve last circular dependencies, make rollup work
Diffstat (limited to 'src/Morphable.js')
-rw-r--r--src/Morphable.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Morphable.js b/src/Morphable.js
index c7e1c0f..a181b49 100644
--- a/src/Morphable.js
+++ b/src/Morphable.js
@@ -1,6 +1,12 @@
import {extend} from './tools.js'
-import {Color, SVGNumber, SVGArray, PathArray, Box, Matrix, PointArray} from './classes.js'
import {Ease} from './Controller.js'
+import Color from './Color.js'
+import SVGNumber from './SVGNumber.js'
+import SVGArray from './SVGArray.js'
+import PointArray from './PointArray.js'
+import PathArray from './PathArray.js'
+import Box from './Box.js'
+import Matrix from './Matrix.js'
export default class Morphable {
constructor (stepper) {