viral-viewer-2 7.2.4 → 7.2.6
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/components/custom-objects/viral-batched-mesh.d.ts +12 -0
- package/dist/components/custom-objects/viral-bim-world.d.ts +0 -6
- package/dist/components/custom-objects/viral-instanced-mesh-v2.d.ts +20 -1
- package/dist/components/post-processing/alpha-selection-outline-pass.d.ts +49 -0
- package/dist/components/post-processing/post-processing-renderer.d.ts +46 -0
- package/dist/components/post-processing/selection-outline-pass.d.ts +21 -16
- package/dist/components/post-processing/stencil-selection-outline-pass.d.ts +54 -0
- package/dist/components/visibility-manager/viral-visibility-manager.d.ts +38 -7
- package/dist/index.mjs +1457 -1112
- package/package.json +1 -1
- package/dist/components/worker/merge-positions.worker.d.ts +0 -19
- package/dist/components/worker-script/merge-positions.script.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare class MergePositionsWorker {
|
|
2
|
-
private _worker;
|
|
3
|
-
private _resolve;
|
|
4
|
-
private _requestId;
|
|
5
|
-
constructor();
|
|
6
|
-
/**
|
|
7
|
-
* Merge selected element positions in a background thread.
|
|
8
|
-
* Cancels any in-flight request automatically.
|
|
9
|
-
*/
|
|
10
|
-
merge(bufferElements: {
|
|
11
|
-
buffer: Float32Array | null;
|
|
12
|
-
modelId: number;
|
|
13
|
-
instances: {
|
|
14
|
-
elementId: string;
|
|
15
|
-
transform: number[];
|
|
16
|
-
}[];
|
|
17
|
-
}[], selectedKeys: string[]): Promise<Float32Array | null>;
|
|
18
|
-
dispose(): void;
|
|
19
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const workerCode: any;
|