vim-web 0.3.44-dev.67 → 0.3.44-dev.69
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.
|
@@ -101,5 +101,5 @@ export declare class Selection<T extends IVimObject> {
|
|
|
101
101
|
* Skips objects that do not implement `getBoundingBox()`.
|
|
102
102
|
* @returns A promise resolving to the combined bounding box.
|
|
103
103
|
*/
|
|
104
|
-
getBoundingBox(): Promise<THREE.Box3>;
|
|
104
|
+
getBoundingBox(): Promise<THREE.Box3 | undefined>;
|
|
105
105
|
}
|
package/dist/vim-web.iife.js
CHANGED
|
@@ -55413,6 +55413,7 @@ void main() {
|
|
|
55413
55413
|
*/
|
|
55414
55414
|
async getBoundingBox() {
|
|
55415
55415
|
var _a3;
|
|
55416
|
+
if (!this.any()) return void 0;
|
|
55416
55417
|
const box = new Box3();
|
|
55417
55418
|
let initialized = false;
|
|
55418
55419
|
for (const obj of this._selection) {
|
|
@@ -75851,7 +75852,7 @@ Averrage Date/Second ${avgDataRatePS} kb
|
|
|
75851
75852
|
showPanel: props.state.showPanel,
|
|
75852
75853
|
fields: [
|
|
75853
75854
|
{ type: "bool", id: "showGhost", label: "Show Ghost", state: props.state.showGhost },
|
|
75854
|
-
{ type:
|
|
75855
|
+
// { type: 'bool', id: 'showRooms', label: 'Show Rooms', state: props.state.showRooms },
|
|
75855
75856
|
{ type: "text", id: "ghostOpacity", label: "Ghost Opacity", state: props.state.ghostOpacity }
|
|
75856
75857
|
]
|
|
75857
75858
|
});
|