@idetik/core 0.7.7 → 0.8.0

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 CHANGED
@@ -544,15 +544,14 @@ declare class ChunkStoreView {
544
544
  getTimeIndex(sliceCoords: SliceCoordinates): number;
545
545
  get lodCount(): number;
546
546
  getChunksToRender(sliceCoords: SliceCoordinates): Chunk[];
547
- updateChunkStatesForVolume(sliceCoords: SliceCoordinates): void;
548
- updateChunkStates(sliceCoords: SliceCoordinates, viewport: Viewport): void;
547
+ updateChunksForImage(sliceCoords: SliceCoordinates, viewport: Viewport): void;
548
+ updateChunksForVolume(sliceCoords: SliceCoordinates): void;
549
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;
@@ -875,7 +874,7 @@ declare class VolumeLayer extends Layer {
875
874
  private debugShowWireframes_;
876
875
  debugShowDegenerateRays: boolean;
877
876
  color: vec3;
878
- samplesPerUnit: number;
877
+ relativeStepSize: number;
879
878
  maxIntensity: number;
880
879
  opacityMultiplier: number;
881
880
  earlyTerminationAlpha: number;