@speridlabs/visus 1.0.2 → 1.0.3
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/main.d.ts +8 -0
- package/dist/main.es.js +530 -671
- package/dist/main.umd.js +6 -6
- package/dist/react.es.js +608 -749
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -172,6 +172,13 @@ export declare class SplatMesh extends THREE.Mesh {
|
|
|
172
172
|
private lastCameraPositionLocal;
|
|
173
173
|
private lastCameraDirectionLocal;
|
|
174
174
|
private invModelMatrix;
|
|
175
|
+
private _vpW;
|
|
176
|
+
private _vpH;
|
|
177
|
+
private _size;
|
|
178
|
+
private _camPosW;
|
|
179
|
+
private _camDirW;
|
|
180
|
+
private _camPosL;
|
|
181
|
+
private _camDirL;
|
|
175
182
|
/** Number of splats combined into a single instanced draw call. */
|
|
176
183
|
private static INSTANCE_SIZE;
|
|
177
184
|
/**
|
|
@@ -180,6 +187,7 @@ export declare class SplatMesh extends THREE.Mesh {
|
|
|
180
187
|
* @param options Rendering options
|
|
181
188
|
*/
|
|
182
189
|
constructor(splatData: SplatData, options?: SplatMeshOptions);
|
|
190
|
+
private onSorterUpdated;
|
|
183
191
|
/**
|
|
184
192
|
* Creates the instanced geometry for rendering splats.
|
|
185
193
|
* @param totalSplats Total number of splats in the data.
|