@inweb/viewer-visualize 27.2.0 → 27.2.2

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.
@@ -572,6 +572,7 @@
572
572
  this.memory = {
573
573
  geometries: 0,
574
574
  geometryBytes: 0,
575
+ optimizedGeometryBytes: 0,
575
576
  textures: 0,
576
577
  textureBytes: 0,
577
578
  materials: 0,
@@ -3487,6 +3488,7 @@
3487
3488
  this.viewer.info.optimizedScene.edges = 0;
3488
3489
  this.viewer.info.memory.geometries = 0;
3489
3490
  this.viewer.info.memory.geometryBytes = 0;
3491
+ this.viewer.info.memory.optimizedGeometryBytes = 0;
3490
3492
  this.viewer.info.memory.textures = 0;
3491
3493
  this.viewer.info.memory.textureBytes = 0;
3492
3494
  this.viewer.info.memory.materials = 0;
@@ -18647,6 +18649,7 @@ js: import "konva/skia-backend";
18647
18649
  if (!this.visualizeJs)
18648
18650
  return;
18649
18651
  this._markup.clearOverlay();
18652
+ this.emitEvent({ type: "clearoverlay" });
18650
18653
  this.update();
18651
18654
  }
18652
18655
  clearSlices() {
@@ -18656,6 +18659,7 @@ js: import "konva/skia-backend";
18656
18659
  const activeView = visViewer.activeView;
18657
18660
  activeView.removeCuttingPlanes();
18658
18661
  activeView.delete();
18662
+ this.emitEvent({ type: "clearslices" });
18659
18663
  this.update();
18660
18664
  }
18661
18665
  getSelected() {