@realsee/dnalogel 3.40.4 → 3.41.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.
@@ -178,4 +178,5 @@ export interface CatmullRomCurve3 {
178
178
  curve_type?: string;
179
179
  tension?: number;
180
180
  panoIndexList?: number[];
181
+ panoIndexMap?: Record<number, number>;
181
182
  }
@@ -22,11 +22,16 @@ export declare function createLineGeometry(options: LineGeometryOption): {
22
22
  maxV: number;
23
23
  curvePath: any;
24
24
  curvePoints: any;
25
+ animationWillError?: undefined;
25
26
  panoMap?: undefined;
26
27
  totalLength?: undefined;
27
28
  } | {
28
29
  geometry: THREE.BufferGeometry;
29
30
  maxV: number;
31
+ animationWillError: {
32
+ start: number;
33
+ end: number;
34
+ }[];
30
35
  curvePath: THREE.CurvePath<THREE.Vector3>;
31
36
  curvePoints: THREE.Vector3[];
32
37
  panoMap: Record<number, number>;