@intelligentgraphics/3d.ig.gfx.standard 1.9.3 → 1.10.1

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.
@@ -1,7 +1,7 @@
1
1
  /*
2
- * Version: 1.9.3.100
3
- * Commit: 22d5fbf
4
- * Date: 2024-01-02T09:16:51.125Z
2
+ * Version: 1.10.1.100
3
+ * Commit: 80d987d
4
+ * Date: 2024-05-14T14:24:19.464Z
5
5
  *
6
6
  * @preserve
7
7
  */
@@ -93,6 +93,14 @@ declare module IGX.Std {
93
93
  * @default false
94
94
  */
95
95
  Record?: string | boolean;
96
+ /**
97
+ * when animation should start 0 (default) to 1.0
98
+ */
99
+ StartTime?: number | string;
100
+ /**
101
+ * When animation should be finished 0 to 1.0 (default)
102
+ */
103
+ EndTime?: number | string;
96
104
  }
97
105
  function SetupValue<P extends object>(parameters: P, key: keyof P, fallbackValue: number): void;
98
106
  var SetupValues: (parameters: AnimationParameters & {
@@ -384,6 +392,10 @@ declare module IGX.Std {
384
392
  GetDeformation(componentId: string): number;
385
393
  SetDeformation(componentId: string, value: number): void;
386
394
  SetPosition(componentId: string, pos: IGX.Float3): void;
395
+ /**
396
+ * Write complex Rotation to external scenegraph
397
+ */
398
+ SetQuaternionRotation(componentId: string, x: number, y: number, z: number, w: number): void;
387
399
  SetXRotation(componentId: string, rotation: number): void;
388
400
  SetYRotation(componentId: string, rotation: number): void;
389
401
  SetZRotation(componentId: string, rotation: number): void;
@@ -718,6 +730,7 @@ declare module IGX.Std {
718
730
  SingleTouchMotion(touch: IGX.Core.Touch): void;
719
731
  SingleTouchEnd(touch: IGX.Core.Touch): void;
720
732
  ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
733
+ GetHints(): number[];
721
734
  }
722
735
  export {};
723
736
  }
@@ -815,6 +828,7 @@ declare module IGX.Std {
815
828
  SingleTouchMotion(touch: IGX.Core.Touch): void;
816
829
  SingleTouchEnd(touch: IGX.Core.Touch): void;
817
830
  ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
831
+ GetHints(): number[];
818
832
  }
819
833
  export {};
820
834
  }
@@ -1226,6 +1240,7 @@ declare module IGX.Std {
1226
1240
  SingleTouchMotion(touch: IGX.Core.Touch): void;
1227
1241
  SingleTouchEnd(touch: IGX.Core.Touch): void;
1228
1242
  ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
1243
+ GetHints(): number[];
1229
1244
  }
1230
1245
  export {};
1231
1246
  }
@@ -1323,6 +1338,7 @@ declare module IGX.Std {
1323
1338
  SingleTouchMotion(touch: IGX.Core.Touch): void;
1324
1339
  SingleTouchEnd(touch: IGX.Core.Touch): void;
1325
1340
  ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
1341
+ GetHints(): number[];
1326
1342
  }
1327
1343
  export {};
1328
1344
  }
@@ -1706,6 +1722,7 @@ declare module IGX.Std {
1706
1722
  SingleTouchMotion(touch: IGX.Core.Touch): void;
1707
1723
  SingleTouchEnd(touch: IGX.Core.Touch): void;
1708
1724
  ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
1725
+ GetHints(): number[];
1709
1726
  }
1710
1727
  export {};
1711
1728
  }
@@ -1803,6 +1820,7 @@ declare module IGX.Std {
1803
1820
  SingleTouchMotion(touch: IGX.Core.Touch): void;
1804
1821
  SingleTouchEnd(touch: IGX.Core.Touch): void;
1805
1822
  ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
1823
+ GetHints(): number[];
1806
1824
  }
1807
1825
  export {};
1808
1826
  }
@@ -1894,66 +1912,6 @@ declare module IGX.Std {
1894
1912
  }
1895
1913
  export {};
1896
1914
  }
1897
- declare module IGX.Std {
1898
- /**
1899
- * Parameters for the ZValueTranslator class
1900
- */
1901
- interface ZValueTranslatorParams {
1902
- /**
1903
- * Array of available position values
1904
- *
1905
- * @creatorType LengthM[]
1906
- * @default "[0.0, 1.0]"
1907
- */
1908
- Values?: string;
1909
- /**
1910
- * Value for Start state
1911
- *
1912
- * @creatorType LengthM
1913
- * @default null
1914
- */
1915
- Start?: number;
1916
- /**
1917
- * Value for End state
1918
- *
1919
- * @creatorType LengthM
1920
- * @default null
1921
- */
1922
- End?: number;
1923
- /**
1924
- * Animation stage
1925
- *
1926
- * @creatorType Integer
1927
- * @default 1
1928
- */
1929
- Stage?: number;
1930
- /**
1931
- * Animation period
1932
- *
1933
- * @creatorType Float
1934
- * @default 1
1935
- */
1936
- Period?: number;
1937
- /**
1938
- * Mouse interaction possible
1939
- *
1940
- * @creatorType Boolean
1941
- * @default true
1942
- */
1943
- Manual?: boolean;
1944
- }
1945
- export class ZValueTranslator extends IGX.Core.Interactor {
1946
- osCoords: Float3;
1947
- startPosition: number;
1948
- constructor(parameters: ZValueTranslatorParams);
1949
- SetPosition(position: any): void;
1950
- SingleTouchStart(touch: IGX.Core.Touch): void;
1951
- SingleTouchMotion(touch: IGX.Core.Touch): void;
1952
- SingleTouchEnd(touch: IGX.Core.Touch): void;
1953
- ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
1954
- }
1955
- export {};
1956
- }
1957
1915
  declare module IGX.Std {
1958
1916
  interface Params extends Pick<AnimationParameters, "Start" | "End" | "StageStart" | "StageEnd" | "Stage" | "Period"> {
1959
1917
  /**
@@ -2134,350 +2092,350 @@ declare module IGX.Std {
2134
2092
  /**
2135
2093
  * Parameter for animations and kinematics
2136
2094
  *
2137
- * @creatorType String
2095
+ * @creatorType Any
2138
2096
  * @default "null"
2139
2097
  */
2140
2098
  Param1?: string;
2141
2099
  /**
2142
2100
  * Parameter for animations and kinematics
2143
2101
  *
2144
- * @creatorType String
2102
+ * @creatorType Any
2145
2103
  * @default "null"
2146
2104
  */
2147
2105
  Param2?: string;
2148
2106
  /**
2149
2107
  * Parameter for animations and kinematics
2150
2108
  *
2151
- * @creatorType String
2109
+ * @creatorType Any
2152
2110
  * @default "null"
2153
2111
  */
2154
2112
  Param3?: string;
2155
2113
  /**
2156
2114
  * Parameter for animations and kinematics
2157
2115
  *
2158
- * @creatorType String
2116
+ * @creatorType Any
2159
2117
  * @default "null"
2160
2118
  */
2161
2119
  Param4?: string;
2162
2120
  /**
2163
2121
  * Parameter for animations and kinematics
2164
2122
  *
2165
- * @creatorType String
2123
+ * @creatorType Any
2166
2124
  * @default "null"
2167
2125
  */
2168
2126
  Param5?: string;
2169
2127
  /**
2170
2128
  * Parameter for animations and kinematics
2171
2129
  *
2172
- * @creatorType String
2130
+ * @creatorType Any
2173
2131
  * @default "null"
2174
2132
  */
2175
2133
  Param6?: string;
2176
2134
  /**
2177
2135
  * Parameter for animations and kinematics
2178
2136
  *
2179
- * @creatorType String
2137
+ * @creatorType Any
2180
2138
  * @default "null"
2181
2139
  */
2182
2140
  Param7?: string;
2183
2141
  /**
2184
2142
  * Parameter for animations and kinematics
2185
2143
  *
2186
- * @creatorType String
2144
+ * @creatorType Any
2187
2145
  * @default "null"
2188
2146
  */
2189
2147
  Param8?: string;
2190
2148
  /**
2191
2149
  * Parameter for animations and kinematics
2192
2150
  *
2193
- * @creatorType String
2151
+ * @creatorType Any
2194
2152
  * @default "null"
2195
2153
  */
2196
2154
  Param9?: string;
2197
2155
  /**
2198
2156
  * Parameter for animations and kinematics
2199
2157
  *
2200
- * @creatorType String
2158
+ * @creatorType Any
2201
2159
  * @default "null"
2202
2160
  */
2203
2161
  Param10?: string;
2204
2162
  /**
2205
2163
  * Parameter for animations and kinematics
2206
2164
  *
2207
- * @creatorType String
2165
+ * @creatorType Any
2208
2166
  * @default "null"
2209
2167
  */
2210
2168
  Param11?: string;
2211
2169
  /**
2212
2170
  * Parameter for animations and kinematics
2213
2171
  *
2214
- * @creatorType String
2172
+ * @creatorType Any
2215
2173
  * @default "null"
2216
2174
  */
2217
2175
  Param12?: string;
2218
2176
  /**
2219
2177
  * Parameter for animations and kinematics
2220
2178
  *
2221
- * @creatorType String
2179
+ * @creatorType Any
2222
2180
  * @default "null"
2223
2181
  */
2224
2182
  Param13?: string;
2225
2183
  /**
2226
2184
  * Parameter for animations and kinematics
2227
2185
  *
2228
- * @creatorType String
2186
+ * @creatorType Any
2229
2187
  * @default "null"
2230
2188
  */
2231
2189
  Param14?: string;
2232
2190
  /**
2233
2191
  * Parameter for animations and kinematics
2234
2192
  *
2235
- * @creatorType String
2193
+ * @creatorType Any
2236
2194
  * @default "null"
2237
2195
  */
2238
2196
  Param15?: string;
2239
2197
  /**
2240
2198
  * Parameter for animations and kinematics
2241
2199
  *
2242
- * @creatorType String
2200
+ * @creatorType Any
2243
2201
  * @default "null"
2244
2202
  */
2245
2203
  Param16?: string;
2246
2204
  /**
2247
2205
  * Parameter for animations and kinematics
2248
2206
  *
2249
- * @creatorType String
2207
+ * @creatorType Any
2250
2208
  * @default "null"
2251
2209
  */
2252
2210
  Param17?: string;
2253
2211
  /**
2254
2212
  * Parameter for animations and kinematics
2255
2213
  *
2256
- * @creatorType String
2214
+ * @creatorType Any
2257
2215
  * @default "null"
2258
2216
  */
2259
2217
  Param18?: string;
2260
2218
  /**
2261
2219
  * Parameter for animations and kinematics
2262
2220
  *
2263
- * @creatorType String
2221
+ * @creatorType Any
2264
2222
  * @default "null"
2265
2223
  */
2266
2224
  Param19?: string;
2267
2225
  /**
2268
2226
  * Parameter for animations and kinematics
2269
2227
  *
2270
- * @creatorType String
2228
+ * @creatorType Any
2271
2229
  * @default "null"
2272
2230
  */
2273
2231
  Param20?: string;
2274
2232
  /**
2275
2233
  * Parameter for animations and kinematics
2276
2234
  *
2277
- * @creatorType String
2235
+ * @creatorType Any
2278
2236
  * @default "null"
2279
2237
  */
2280
2238
  Param21?: string;
2281
2239
  /**
2282
2240
  * Parameter for animations and kinematics
2283
2241
  *
2284
- * @creatorType String
2242
+ * @creatorType Any
2285
2243
  * @default "null"
2286
2244
  */
2287
2245
  Param22?: string;
2288
2246
  /**
2289
2247
  * Parameter for animations and kinematics
2290
2248
  *
2291
- * @creatorType String
2249
+ * @creatorType Any
2292
2250
  * @default "null"
2293
2251
  */
2294
2252
  Param23?: string;
2295
2253
  /**
2296
2254
  * Parameter for animations and kinematics
2297
2255
  *
2298
- * @creatorType String
2256
+ * @creatorType Any
2299
2257
  * @default "null"
2300
2258
  */
2301
2259
  Param24?: string;
2302
2260
  /**
2303
2261
  * Parameter for animations and kinematics
2304
2262
  *
2305
- * @creatorType String
2263
+ * @creatorType Any
2306
2264
  * @default "null"
2307
2265
  */
2308
2266
  Param25?: string;
2309
2267
  /**
2310
2268
  * Parameter for animations and kinematics
2311
2269
  *
2312
- * @creatorType String
2270
+ * @creatorType Any
2313
2271
  * @default "null"
2314
2272
  */
2315
2273
  Param26?: string;
2316
2274
  /**
2317
2275
  * Parameter for animations and kinematics
2318
2276
  *
2319
- * @creatorType String
2277
+ * @creatorType Any
2320
2278
  * @default "null"
2321
2279
  */
2322
2280
  Param27?: string;
2323
2281
  /**
2324
2282
  * Parameter for animations and kinematics
2325
2283
  *
2326
- * @creatorType String
2284
+ * @creatorType Any
2327
2285
  * @default "null"
2328
2286
  */
2329
2287
  Param28?: string;
2330
2288
  /**
2331
2289
  * Parameter for animations and kinematics
2332
2290
  *
2333
- * @creatorType String
2291
+ * @creatorType Any
2334
2292
  * @default "null"
2335
2293
  */
2336
2294
  Param29?: string;
2337
2295
  /**
2338
2296
  * Parameter for animations and kinematics
2339
2297
  *
2340
- * @creatorType String
2298
+ * @creatorType Any
2341
2299
  * @default "null"
2342
2300
  */
2343
2301
  Param30?: string;
2344
2302
  /**
2345
2303
  * Parameter for animations and kinematics
2346
2304
  *
2347
- * @creatorType String
2305
+ * @creatorType Any
2348
2306
  * @default "null"
2349
2307
  */
2350
2308
  Param31?: string;
2351
2309
  /**
2352
2310
  * Parameter for animations and kinematics
2353
2311
  *
2354
- * @creatorType String
2312
+ * @creatorType Any
2355
2313
  * @default "null"
2356
2314
  */
2357
2315
  Param32?: string;
2358
2316
  /**
2359
2317
  * Parameter for animations and kinematics
2360
2318
  *
2361
- * @creatorType String
2319
+ * @creatorType Any
2362
2320
  * @default "null"
2363
2321
  */
2364
2322
  Param33?: string;
2365
2323
  /**
2366
2324
  * Parameter for animations and kinematics
2367
2325
  *
2368
- * @creatorType String
2326
+ * @creatorType Any
2369
2327
  * @default "null"
2370
2328
  */
2371
2329
  Param34?: string;
2372
2330
  /**
2373
2331
  * Parameter for animations and kinematics
2374
2332
  *
2375
- * @creatorType String
2333
+ * @creatorType Any
2376
2334
  * @default "null"
2377
2335
  */
2378
2336
  Param35?: string;
2379
2337
  /**
2380
2338
  * Parameter for animations and kinematics
2381
2339
  *
2382
- * @creatorType String
2340
+ * @creatorType Any
2383
2341
  * @default "null"
2384
2342
  */
2385
2343
  Param36?: string;
2386
2344
  /**
2387
2345
  * Parameter for animations and kinematics
2388
2346
  *
2389
- * @creatorType String
2347
+ * @creatorType Any
2390
2348
  * @default "null"
2391
2349
  */
2392
2350
  Param37?: string;
2393
2351
  /**
2394
2352
  * Parameter for animations and kinematics
2395
2353
  *
2396
- * @creatorType String
2354
+ * @creatorType Any
2397
2355
  * @default "null"
2398
2356
  */
2399
2357
  Param38?: string;
2400
2358
  /**
2401
2359
  * Parameter for animations and kinematics
2402
2360
  *
2403
- * @creatorType String
2361
+ * @creatorType Any
2404
2362
  * @default "null"
2405
2363
  */
2406
2364
  Param39?: string;
2407
2365
  /**
2408
2366
  * Parameter for animations and kinematics
2409
2367
  *
2410
- * @creatorType String
2368
+ * @creatorType Any
2411
2369
  * @default "null"
2412
2370
  */
2413
2371
  Param40?: string;
2414
2372
  /**
2415
2373
  * Parameter for animations and kinematics
2416
2374
  *
2417
- * @creatorType String
2375
+ * @creatorType Any
2418
2376
  * @default "null"
2419
2377
  */
2420
2378
  Param41?: string;
2421
2379
  /**
2422
2380
  * Parameter for animations and kinematics
2423
2381
  *
2424
- * @creatorType String
2382
+ * @creatorType Any
2425
2383
  * @default "null"
2426
2384
  */
2427
2385
  Param42?: string;
2428
2386
  /**
2429
2387
  * Parameter for animations and kinematics
2430
2388
  *
2431
- * @creatorType String
2389
+ * @creatorType Any
2432
2390
  * @default "null"
2433
2391
  */
2434
2392
  Param43?: string;
2435
2393
  /**
2436
2394
  * Parameter for animations and kinematics
2437
2395
  *
2438
- * @creatorType String
2396
+ * @creatorType Any
2439
2397
  * @default "null"
2440
2398
  */
2441
2399
  Param44?: string;
2442
2400
  /**
2443
2401
  * Parameter for animations and kinematics
2444
2402
  *
2445
- * @creatorType String
2403
+ * @creatorType Any
2446
2404
  * @default "null"
2447
2405
  */
2448
2406
  Param45?: string;
2449
2407
  /**
2450
2408
  * Parameter for animations and kinematics
2451
2409
  *
2452
- * @creatorType String
2410
+ * @creatorType Any
2453
2411
  * @default "null"
2454
2412
  */
2455
2413
  Param46?: string;
2456
2414
  /**
2457
2415
  * Parameter for animations and kinematics
2458
2416
  *
2459
- * @creatorType String
2417
+ * @creatorType Any
2460
2418
  * @default "null"
2461
2419
  */
2462
2420
  Param47?: string;
2463
2421
  /**
2464
2422
  * Parameter for animations and kinematics
2465
2423
  *
2466
- * @creatorType String
2424
+ * @creatorType Any
2467
2425
  * @default "null"
2468
2426
  */
2469
2427
  Param48?: string;
2470
2428
  /**
2471
2429
  * Parameter for animations and kinematics
2472
2430
  *
2473
- * @creatorType String
2431
+ * @creatorType Any
2474
2432
  * @default "null"
2475
2433
  */
2476
2434
  Param49?: string;
2477
2435
  /**
2478
2436
  * Parameter for animations and kinematics
2479
2437
  *
2480
- * @creatorType String
2438
+ * @creatorType Any
2481
2439
  * @default "null"
2482
2440
  */
2483
2441
  Param50?: string;
@@ -2521,6 +2479,9 @@ declare module IGX.Std {
2521
2479
  private d;
2522
2480
  private IGX_API;
2523
2481
  Debug: boolean;
2482
+ static windowReplacement: {
2483
+ comment: string;
2484
+ };
2524
2485
  constructor(parameters: AnimationInteractorParams);
2525
2486
  setUseCache(value: boolean): void;
2526
2487
  private PrepAnimation;
@@ -2538,6 +2499,7 @@ declare module IGX.Std {
2538
2499
  private detectQuaternion;
2539
2500
  private slerpInPlaceA;
2540
2501
  private calculate___SetStagePositionInternal;
2502
+ GetHints(): number[];
2541
2503
  }
2542
2504
  export const Test1: Animation;
2543
2505
  export {};
@@ -2652,6 +2614,13 @@ declare module IGX.Std {
2652
2614
  * @default 0
2653
2615
  */
2654
2616
  Thickness?: number;
2617
+ /**
2618
+ * Gap in opened state
2619
+ *
2620
+ * @creatorType Float
2621
+ * @default 0
2622
+ */
2623
+ Gap?: number;
2655
2624
  /**
2656
2625
  * Axis to rotate arround
2657
2626
  *
@@ -2681,6 +2650,7 @@ declare module IGX.Std {
2681
2650
  SetPosition(position: string): void;
2682
2651
  setPosition(position: number): void;
2683
2652
  SetStagePosition(stage: number, position: number): void;
2653
+ GetHints(): number[];
2684
2654
  }
2685
2655
  export {};
2686
2656
  }
@@ -2718,6 +2688,66 @@ declare module IGX.Std {
2718
2688
  }
2719
2689
  export {};
2720
2690
  }
2691
+ declare module IGX.Std {
2692
+ /**
2693
+ * Parameters for the ZValueTranslator class
2694
+ */
2695
+ interface ZValueTranslatorParams {
2696
+ /**
2697
+ * Array of available position values
2698
+ *
2699
+ * @creatorType LengthM[]
2700
+ * @default "[0.0, 1.0]"
2701
+ */
2702
+ Values?: string;
2703
+ /**
2704
+ * Value for Start state
2705
+ *
2706
+ * @creatorType LengthM
2707
+ * @default null
2708
+ */
2709
+ Start?: number;
2710
+ /**
2711
+ * Value for End state
2712
+ *
2713
+ * @creatorType LengthM
2714
+ * @default null
2715
+ */
2716
+ End?: number;
2717
+ /**
2718
+ * Animation stage
2719
+ *
2720
+ * @creatorType Integer
2721
+ * @default 1
2722
+ */
2723
+ Stage?: number;
2724
+ /**
2725
+ * Animation period
2726
+ *
2727
+ * @creatorType Float
2728
+ * @default 1
2729
+ */
2730
+ Period?: number;
2731
+ /**
2732
+ * Mouse interaction possible
2733
+ *
2734
+ * @creatorType Boolean
2735
+ * @default true
2736
+ */
2737
+ Manual?: boolean;
2738
+ }
2739
+ export class ZValueTranslator extends IGX.Core.Interactor {
2740
+ osCoords: Float3;
2741
+ startPosition: number;
2742
+ constructor(parameters: ZValueTranslatorParams);
2743
+ SetPosition(position: any): void;
2744
+ SingleTouchStart(touch: IGX.Core.Touch): void;
2745
+ SingleTouchMotion(touch: IGX.Core.Touch): void;
2746
+ SingleTouchEnd(touch: IGX.Core.Touch): void;
2747
+ ApplyMotion(touch: IGX.Core.Touch, isFinal: boolean): void;
2748
+ }
2749
+ export {};
2750
+ }
2721
2751
  declare module IGX.Std {
2722
2752
  interface Params {
2723
2753
  }