@idetik/core 0.7.6 → 0.7.8
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/index.d.ts +4 -4
- package/dist/index.js +253 -253
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +12 -12
- package/dist/index.umd.cjs.map +1 -1
- package/dist/types/src/core/chunk_store_view.d.ts +4 -4
- package/dist/types/src/core/chunk_store_view.d.ts.map +1 -1
- package/dist/types/src/layers/chunked_image_layer.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -544,20 +544,20 @@ declare class ChunkStoreView {
|
|
|
544
544
|
getTimeIndex(sliceCoords: SliceCoordinates): number;
|
|
545
545
|
get lodCount(): number;
|
|
546
546
|
getChunksToRender(sliceCoords: SliceCoordinates): Chunk[];
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
547
|
+
updateChunksForImage(sliceCoords: SliceCoordinates, viewport: Viewport): void;
|
|
548
|
+
updateChunksForVolume(sliceCoords: SliceCoordinates): void;
|
|
549
|
+
allVisibleFallbackLODLoaded(sliceCoords: SliceCoordinates): boolean;
|
|
550
550
|
get currentLOD(): number;
|
|
551
551
|
maybeForgetChunk(chunk: Chunk): void;
|
|
552
552
|
dispose(): void;
|
|
553
553
|
setImageSourcePolicy(newPolicy: ImageSourcePolicy, key: symbol): void;
|
|
554
554
|
private setLOD;
|
|
555
|
-
private updateChunkViewStates;
|
|
556
555
|
private isChunkChannelInSlice;
|
|
557
556
|
private updateChunksAtTimeIndex;
|
|
558
557
|
private markTimeChunksForPrefetch;
|
|
559
558
|
private computePriority;
|
|
560
559
|
private isChunkWithinBounds;
|
|
560
|
+
private fallbackLOD;
|
|
561
561
|
private getZBounds;
|
|
562
562
|
private viewBounds2DChanged;
|
|
563
563
|
private zBoundsChanged;
|