@visactor/vtable-plugins 1.18.11 → 1.18.12-alpha.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.
package/dist/vtable-plugins.js
CHANGED
|
@@ -8593,10 +8593,9 @@
|
|
|
8593
8593
|
return this.doUpdateOBBBounds();
|
|
8594
8594
|
}
|
|
8595
8595
|
combindShadowAABBBounds(bounds) {
|
|
8596
|
-
if (this.shadowRoot)
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
}
|
|
8596
|
+
if (!this.shadowRoot) return;
|
|
8597
|
+
const b = this.shadowRoot.AABBBounds.clone();
|
|
8598
|
+
bounds.union(b);
|
|
8600
8599
|
}
|
|
8601
8600
|
doUpdateOBBBounds() {
|
|
8602
8601
|
return this._OBBBounds;
|