Browse Source

js -> jsm

Garrett Johnson 5 years ago
parent
commit
30b27b228a
1 changed files with 12 additions and 4 deletions
  1. 12 4
      examples/jsm/lines/LineSegments2.js

+ 12 - 4
examples/jsm/lines/LineSegments2.js

@@ -1,12 +1,20 @@
-import { Matrix4, Vector3, Vector4, Line3, Math as MathUtils, Mesh, InstancedInterleavedBuffer, InterleavedBufferAttribute  } from "../../../build/three.module.js";
-import { LineSegmentsGeometry } from "../lines/LineSegmentsGeometry.js";
-import { LineMaterial } from "../lines/LineMaterial.js";
-
 /**
  * @author WestLangley / http://github.com/WestLangley
  *
  */
 
+import {
+	InstancedInterleavedBuffer,
+	InterleavedBufferAttribute,
+	Line3,
+	Matrix4,
+	Mesh,
+	Vector3,
+	Vector4
+} from "../../../build/three.module.js";
+import { LineSegmentsGeometry } from "../lines/LineSegmentsGeometry.js";
+import { LineMaterial } from "../lines/LineMaterial.js";
+
 var LineSegments2 = function ( geometry, material ) {
 
 	Mesh.call( this );