|
@@ -1,3 +1,4 @@
|
|
|
+import { Color } from '../../math/Color.js';
|
|
|
import { Path } from './Path.js';
|
|
|
import { Shape } from './Shape.js';
|
|
|
import { ShapeUtils } from '../ShapeUtils.js';
|
|
@@ -11,7 +12,7 @@ function ShapePath() {
|
|
|
|
|
|
this.type = 'ShapePath';
|
|
|
|
|
|
- this.color = new THREE.Color();
|
|
|
+ this.color = new Color();
|
|
|
|
|
|
this.subPaths = [];
|
|
|
this.currentPath = null;
|