viral-viewer-2 0.9.6 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -268,28 +268,28 @@ class CubeScene {
|
|
|
268
268
|
this.addObject(plane1);
|
|
269
269
|
//right
|
|
270
270
|
// this.addObject(plane11);
|
|
271
|
-
const
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
this.addObject(
|
|
271
|
+
const plane1131 = new three_1.Mesh();
|
|
272
|
+
plane1131.name = "1131";
|
|
273
|
+
plane1131.add(plane11);
|
|
274
|
+
plane1131.add(plane31);
|
|
275
|
+
plane1131.material = planeMaterial.clone();
|
|
276
|
+
this.addObject(plane1131);
|
|
277
277
|
//left
|
|
278
278
|
// this.addObject(plane12);
|
|
279
|
-
const
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
this.addObject(
|
|
279
|
+
const plane1242 = new three_1.Mesh();
|
|
280
|
+
plane1242.name = "1242";
|
|
281
|
+
plane1242.add(plane12);
|
|
282
|
+
plane1242.add(plane42);
|
|
283
|
+
plane1242.material = planeMaterial.clone();
|
|
284
|
+
this.addObject(plane1242);
|
|
285
285
|
//top
|
|
286
286
|
// this.addObject(plane13);
|
|
287
|
-
const
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
this.addObject(
|
|
287
|
+
const plane1353 = new three_1.Mesh();
|
|
288
|
+
plane1353.name = "1354";
|
|
289
|
+
plane1353.add(plane13);
|
|
290
|
+
plane1353.add(plane53);
|
|
291
|
+
plane1353.material = planeMaterial.clone();
|
|
292
|
+
this.addObject(plane1353);
|
|
293
293
|
//bottom
|
|
294
294
|
// this.addObject(plane14);
|
|
295
295
|
const plane1463 = new three_1.Mesh();
|