@realsee/dnalogel 3.42.0-alpha-tag.3 → 3.42.0-alpha-tag.4

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.
@@ -2,9 +2,9 @@ import type { State as FiveState } from '@realsee/five';
2
2
  import type { BaseTag } from './BaseTag';
3
3
  export declare class Cache {
4
4
  cache_raycaster: Map<string, number>;
5
- private cache_distance;
6
- private cache_visible;
7
- private cache_unfolded_by_position;
5
+ cache_distance: Map<string, number>;
6
+ cache_visible: Map<string, boolean>;
7
+ cache_unfolded_by_position: Map<string, boolean>;
8
8
  constructor();
9
9
  clear(): void;
10
10
  getRaycasterKey(startPosition: THREE.Vector3, direction: THREE.Vector3, accurate?: number): string;
@@ -1,3 +1,3 @@
1
- import type { TagInstance } from '../typings';
2
- export declare function getTagPosition(tag: TagInstance): import("three").Vector3 | import("three").Vector3[];
3
- export declare function getTagCenterPosition(tag: TagInstance): import("three").Vector3;
1
+ import type { BaseTag } from '../controller/Tag/BaseTag';
2
+ export declare function getTagPosition(tag: BaseTag): any;
3
+ export declare function getTagCenterPosition(tag: BaseTag): import("three").Vector3;