vim-web 0.3.44-dev.0 → 0.3.44-dev.1

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.
package/dist/vim-web.js CHANGED
@@ -59142,6 +59142,12 @@ class RpcSafeClient {
59142
59142
  RPCLockIblRotation(lock) {
59143
59143
  this.rpc.RPCLockIblRotation(lock);
59144
59144
  }
59145
+ RPCGetSceneAABB() {
59146
+ return this.safeCall(
59147
+ () => this.rpc.RPCGetSceneAABB(),
59148
+ void 0
59149
+ );
59150
+ }
59145
59151
  /*******************************************************************************
59146
59152
  * NODE VISIBILITY METHODS
59147
59153
  * Methods for controlling node visibility, including show/hide, ghosting,
@@ -61810,6 +61816,9 @@ class Renderer2 {
61810
61816
  this._updateLighting = true;
61811
61817
  this.requestSettingsUpdate();
61812
61818
  }
61819
+ getBoundingBox() {
61820
+ return this._rpc.RPCGetSceneAABB();
61821
+ }
61813
61822
  /**
61814
61823
  * Requests an update to be performed on the next animation frame.
61815
61824
  * Multiple setting changes will be batched into a single update.