@inweb/viewer-core 25.3.20 → 25.3.22
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/viewer-core.js +11 -8
- package/dist/viewer-core.js.map +1 -1
- package/dist/viewer-core.module.js +4 -2
- package/dist/viewer-core.module.js.map +1 -1
- package/lib/viewer/CanvasEvents.d.ts +74 -0
- package/lib/viewer/ViewerEvents.d.ts +59 -121
- package/package.json +1 -1
- package/src/viewer/CanvasEvents.ts +101 -8
- package/src/viewer/ViewerEvents.ts +59 -140
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Assembly, File, Model } from "@inweb/client";
|
|
2
|
+
import { CanvasEventMap } from "./CanvasEvents";
|
|
2
3
|
/**
|
|
3
|
-
*
|
|
4
|
+
* Event that fires when model loading has been canceled.
|
|
4
5
|
*
|
|
5
6
|
* @event
|
|
6
7
|
*/
|
|
@@ -11,7 +12,7 @@ export interface CancelEvent {
|
|
|
11
12
|
type: "cancel";
|
|
12
13
|
}
|
|
13
14
|
/**
|
|
14
|
-
*
|
|
15
|
+
* Event that fires when the active dragger has been changed.
|
|
15
16
|
*
|
|
16
17
|
* @event
|
|
17
18
|
*/
|
|
@@ -26,7 +27,7 @@ export interface ChangeActiveDraggerEvent {
|
|
|
26
27
|
data: string;
|
|
27
28
|
}
|
|
28
29
|
/**
|
|
29
|
-
*
|
|
30
|
+
* Event that fires when the markup color has been changed.
|
|
30
31
|
*
|
|
31
32
|
* @event
|
|
32
33
|
*/
|
|
@@ -45,7 +46,7 @@ export interface ChangeMarkupColorEvent {
|
|
|
45
46
|
};
|
|
46
47
|
}
|
|
47
48
|
/**
|
|
48
|
-
*
|
|
49
|
+
* Event that fires when the viewer has been cleared.
|
|
49
50
|
*
|
|
50
51
|
* @event
|
|
51
52
|
*/
|
|
@@ -56,7 +57,7 @@ export interface ClearEvent {
|
|
|
56
57
|
type: "clear";
|
|
57
58
|
}
|
|
58
59
|
/**
|
|
59
|
-
*
|
|
60
|
+
* Event that fires after viewer executes the command.
|
|
60
61
|
*
|
|
61
62
|
* @event
|
|
62
63
|
*/
|
|
@@ -75,7 +76,7 @@ export interface CommandEvent {
|
|
|
75
76
|
args: any[];
|
|
76
77
|
}
|
|
77
78
|
/**
|
|
78
|
-
*
|
|
79
|
+
* Event that fires when the model scene description file has been loaded.
|
|
79
80
|
*
|
|
80
81
|
* @event
|
|
81
82
|
*/
|
|
@@ -98,7 +99,7 @@ export interface DatabaseChunkEvent {
|
|
|
98
99
|
buffer?: Uint8Array | ArrayBuffer;
|
|
99
100
|
}
|
|
100
101
|
/**
|
|
101
|
-
*
|
|
102
|
+
* Event that fires before viewer resources has been released.
|
|
102
103
|
*
|
|
103
104
|
* @event
|
|
104
105
|
*/
|
|
@@ -109,9 +110,9 @@ export interface DisposeEvent {
|
|
|
109
110
|
type: "dispose";
|
|
110
111
|
}
|
|
111
112
|
/**
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
113
|
+
* Event that fires when the model geometry data chunk has been loaded. Note that small files
|
|
114
|
+
* are loaded in one chunk, and `geometrychunk` event does not fire, only the `databasechink`
|
|
115
|
+
* event fires.
|
|
115
116
|
*
|
|
116
117
|
* @event
|
|
117
118
|
*/
|
|
@@ -134,7 +135,7 @@ export interface GeometryChunkEvent {
|
|
|
134
135
|
buffer?: Uint8Array | ArrayBuffer;
|
|
135
136
|
}
|
|
136
137
|
/**
|
|
137
|
-
*
|
|
138
|
+
* Event that fires after model has been successfully loaded.
|
|
138
139
|
*
|
|
139
140
|
* @event
|
|
140
141
|
*/
|
|
@@ -157,7 +158,7 @@ export interface GeometryEndEvent {
|
|
|
157
158
|
data?: any;
|
|
158
159
|
}
|
|
159
160
|
/**
|
|
160
|
-
*
|
|
161
|
+
* Event that fires when the model fails to load.
|
|
161
162
|
*
|
|
162
163
|
* @event
|
|
163
164
|
*/
|
|
@@ -180,7 +181,7 @@ export interface GeometryErrorEvent {
|
|
|
180
181
|
buffer?: Uint8Array | ArrayBuffer;
|
|
181
182
|
}
|
|
182
183
|
/**
|
|
183
|
-
*
|
|
184
|
+
* Event measuring progress of the model loading process.
|
|
184
185
|
*
|
|
185
186
|
* @event
|
|
186
187
|
*/
|
|
@@ -203,7 +204,7 @@ export interface GeometryProgressEvent {
|
|
|
203
204
|
buffer?: Uint8Array | ArrayBuffer;
|
|
204
205
|
}
|
|
205
206
|
/**
|
|
206
|
-
*
|
|
207
|
+
* Event that fires before the model loads.
|
|
207
208
|
*
|
|
208
209
|
* @event
|
|
209
210
|
*/
|
|
@@ -222,7 +223,7 @@ export interface GeometryStartEvent {
|
|
|
222
223
|
buffer?: Uint8Array | ArrayBuffer;
|
|
223
224
|
}
|
|
224
225
|
/**
|
|
225
|
-
*
|
|
226
|
+
* Event that fires before model opens.
|
|
226
227
|
*
|
|
227
228
|
* @event
|
|
228
229
|
*/
|
|
@@ -245,7 +246,7 @@ export interface OpenEvent {
|
|
|
245
246
|
buffer?: Uint8Array | ArrayBuffer;
|
|
246
247
|
}
|
|
247
248
|
/**
|
|
248
|
-
*
|
|
249
|
+
* Event that fires when rendering occurs.
|
|
249
250
|
*
|
|
250
251
|
* @event
|
|
251
252
|
*/
|
|
@@ -254,11 +255,17 @@ export interface RenderEvent {
|
|
|
254
255
|
* Event type.
|
|
255
256
|
*/
|
|
256
257
|
type: "render";
|
|
258
|
+
/**
|
|
259
|
+
* Render time.
|
|
260
|
+
*/
|
|
257
261
|
time: DOMHighResTimeStamp;
|
|
262
|
+
/**
|
|
263
|
+
* The milliseconds passed since the previous render.
|
|
264
|
+
*/
|
|
258
265
|
deltaTime: DOMHighResTimeStamp;
|
|
259
266
|
}
|
|
260
267
|
/**
|
|
261
|
-
*
|
|
268
|
+
* Event that fires when resize occurs.
|
|
262
269
|
*
|
|
263
270
|
* @event
|
|
264
271
|
*/
|
|
@@ -277,7 +284,7 @@ export interface ResizeEvent {
|
|
|
277
284
|
height: number;
|
|
278
285
|
}
|
|
279
286
|
/**
|
|
280
|
-
*
|
|
287
|
+
* Event that fires when the selection changes.
|
|
281
288
|
*
|
|
282
289
|
* @event
|
|
283
290
|
*/
|
|
@@ -296,7 +303,7 @@ export interface SelectEvent {
|
|
|
296
303
|
handles: string[];
|
|
297
304
|
}
|
|
298
305
|
/**
|
|
299
|
-
*
|
|
306
|
+
* Event that fires when an update occurs.
|
|
300
307
|
*
|
|
301
308
|
* @event
|
|
302
309
|
*/
|
|
@@ -311,7 +318,7 @@ export interface UpdateEvent {
|
|
|
311
318
|
data: boolean;
|
|
312
319
|
}
|
|
313
320
|
/**
|
|
314
|
-
*
|
|
321
|
+
* Event measuring progress of loading a `VisualizeJS` library.
|
|
315
322
|
*
|
|
316
323
|
* @event
|
|
317
324
|
*/
|
|
@@ -333,7 +340,7 @@ export interface VisualizeProgressEvent {
|
|
|
333
340
|
total: number;
|
|
334
341
|
}
|
|
335
342
|
/**
|
|
336
|
-
*
|
|
343
|
+
* Event that fires when walk speed changing.
|
|
337
344
|
*
|
|
338
345
|
* @event
|
|
339
346
|
*/
|
|
@@ -343,12 +350,12 @@ export interface WalkSpeedChangeEvent {
|
|
|
343
350
|
*/
|
|
344
351
|
type: "walkspeedchange";
|
|
345
352
|
/**
|
|
346
|
-
*
|
|
353
|
+
* Walk speed multiplier.
|
|
347
354
|
*/
|
|
348
355
|
data: number;
|
|
349
356
|
}
|
|
350
357
|
/**
|
|
351
|
-
*
|
|
358
|
+
* Event that fires when walk started.
|
|
352
359
|
*
|
|
353
360
|
* @event
|
|
354
361
|
*/
|
|
@@ -359,7 +366,7 @@ export interface WalkStartEvent {
|
|
|
359
366
|
type: "walkstart";
|
|
360
367
|
}
|
|
361
368
|
/**
|
|
362
|
-
*
|
|
369
|
+
* Event that fires when camera panning.
|
|
363
370
|
*
|
|
364
371
|
* @event
|
|
365
372
|
*/
|
|
@@ -386,7 +393,7 @@ export interface PanEvent {
|
|
|
386
393
|
dY: number;
|
|
387
394
|
}
|
|
388
395
|
/**
|
|
389
|
-
*
|
|
396
|
+
* Event that fires when zooming of the camera.
|
|
390
397
|
*
|
|
391
398
|
* @event
|
|
392
399
|
*/
|
|
@@ -401,7 +408,7 @@ export interface ZoomEvent {
|
|
|
401
408
|
data?: any;
|
|
402
409
|
}
|
|
403
410
|
/**
|
|
404
|
-
*
|
|
411
|
+
* Event that fires when zooming of the camera.
|
|
405
412
|
*
|
|
406
413
|
* @event
|
|
407
414
|
*/
|
|
@@ -416,7 +423,7 @@ export interface ZoomAtEvent {
|
|
|
416
423
|
data: number;
|
|
417
424
|
}
|
|
418
425
|
/**
|
|
419
|
-
*
|
|
426
|
+
* Event that fires when zooming to entity.
|
|
420
427
|
*
|
|
421
428
|
* @event
|
|
422
429
|
*/
|
|
@@ -433,170 +440,101 @@ export interface ZoomToEntityEvent {
|
|
|
433
440
|
/**
|
|
434
441
|
* Viewer Events
|
|
435
442
|
*/
|
|
436
|
-
export interface ViewerEventMap {
|
|
443
|
+
export interface ViewerEventMap extends CanvasEventMap {
|
|
437
444
|
/**
|
|
438
|
-
*
|
|
445
|
+
* Event that fires when model loading has been canceled.
|
|
439
446
|
*/
|
|
440
447
|
cancel: CancelEvent;
|
|
441
448
|
/**
|
|
442
|
-
*
|
|
449
|
+
* Event that fires when the active dragger has been changed.
|
|
443
450
|
*/
|
|
444
451
|
changeactivedragger: ChangeActiveDraggerEvent;
|
|
445
452
|
/**
|
|
446
|
-
*
|
|
453
|
+
* Event that fires when the markup color has been changed.
|
|
447
454
|
*/
|
|
448
455
|
changemarkupcolor: ChangeMarkupColorEvent;
|
|
449
456
|
/**
|
|
450
|
-
*
|
|
457
|
+
* Event that fires when the viewer has been cleared.
|
|
451
458
|
*/
|
|
452
459
|
clear: ClearEvent;
|
|
453
460
|
/**
|
|
454
|
-
*
|
|
461
|
+
* Event that fires after viewer executes the command.
|
|
455
462
|
*/
|
|
456
463
|
command: CommandEvent;
|
|
457
464
|
/**
|
|
458
|
-
*
|
|
465
|
+
* Event that fires when the model scene description file has been loaded.
|
|
459
466
|
*/
|
|
460
467
|
databasechunk: DatabaseChunkEvent;
|
|
461
468
|
/**
|
|
462
|
-
*
|
|
469
|
+
* Event that fires before viewer resources has been released.
|
|
463
470
|
*/
|
|
464
471
|
dispose: DisposeEvent;
|
|
465
472
|
/**
|
|
466
|
-
*
|
|
473
|
+
* Event that fires when the model geometry data chunk has been loaded.
|
|
467
474
|
*/
|
|
468
475
|
geometrychunk: GeometryChunkEvent;
|
|
469
476
|
/**
|
|
470
|
-
*
|
|
477
|
+
* Event that fires after model has been successfully loaded.
|
|
471
478
|
*/
|
|
472
479
|
geometryend: GeometryEndEvent;
|
|
473
480
|
/**
|
|
474
|
-
*
|
|
481
|
+
* Event that fires when the model fails to open.
|
|
475
482
|
*/
|
|
476
483
|
geometryerror: GeometryErrorEvent;
|
|
477
484
|
/**
|
|
478
|
-
*
|
|
485
|
+
* Event measuring progress of the model loading process.
|
|
479
486
|
*/
|
|
480
487
|
geometryprogress: GeometryProgressEvent;
|
|
481
488
|
/**
|
|
482
|
-
*
|
|
489
|
+
* Event that fires before the model opens.
|
|
483
490
|
*/
|
|
484
491
|
geometrystart: GeometryStartEvent;
|
|
485
492
|
/**
|
|
486
|
-
*
|
|
493
|
+
* Event that fires before model opens.
|
|
487
494
|
*/
|
|
488
495
|
open: OpenEvent;
|
|
489
496
|
/**
|
|
490
|
-
*
|
|
497
|
+
* Event that fires when an rendering occurs.
|
|
491
498
|
*/
|
|
492
499
|
render: RenderEvent;
|
|
493
500
|
/**
|
|
494
|
-
*
|
|
501
|
+
* Event that fires when resize occurs.
|
|
495
502
|
*/
|
|
496
503
|
resize: ResizeEvent;
|
|
497
504
|
/**
|
|
498
|
-
*
|
|
505
|
+
* Event that fires when the selection changes.
|
|
499
506
|
*/
|
|
500
507
|
select: SelectEvent;
|
|
501
508
|
/**
|
|
502
|
-
*
|
|
509
|
+
* Event that fires when an update occurs.
|
|
503
510
|
*/
|
|
504
511
|
update: UpdateEvent;
|
|
505
512
|
/**
|
|
506
|
-
*
|
|
513
|
+
* Event measuring progress of loading a `VisualizeJS` library.
|
|
507
514
|
*/
|
|
508
515
|
visualizeprogress: VisualizeProgressEvent;
|
|
509
516
|
/**
|
|
510
|
-
*
|
|
517
|
+
* Event that fires when walk speed changing.
|
|
511
518
|
*/
|
|
512
519
|
walkspeedchange: WalkSpeedChangeEvent;
|
|
513
520
|
/**
|
|
514
|
-
*
|
|
521
|
+
* Event that fires when walk started.
|
|
515
522
|
*/
|
|
516
523
|
walkstart: WalkStartEvent;
|
|
517
524
|
/**
|
|
518
|
-
*
|
|
525
|
+
* Event that fires when camera panning.
|
|
519
526
|
*/
|
|
520
527
|
pan: PanEvent;
|
|
521
528
|
/**
|
|
522
|
-
*
|
|
529
|
+
* Event that fires when zooming of the camera.
|
|
523
530
|
*/
|
|
524
531
|
zoom: ZoomEvent;
|
|
525
532
|
/**
|
|
526
|
-
*
|
|
533
|
+
* Event that fires when zooming of the camera.
|
|
527
534
|
*/
|
|
528
535
|
zoomat: ZoomAtEvent;
|
|
529
536
|
/**
|
|
530
|
-
*
|
|
537
|
+
* Event that fires when zooming to entity.
|
|
531
538
|
*/
|
|
532
539
|
zoomtoentity: ZoomToEntityEvent;
|
|
533
|
-
/**
|
|
534
|
-
* {@link Viewer} event that fires when the user attempts to open a context menu.
|
|
535
|
-
*/
|
|
536
|
-
contextmenu: PointerEvent;
|
|
537
|
-
/**
|
|
538
|
-
* {@link Viewer} event that fires on mouse click.
|
|
539
|
-
*/
|
|
540
|
-
click: MouseEvent;
|
|
541
|
-
/**
|
|
542
|
-
* A {@link Viewer} event that fires on mouse double click.
|
|
543
|
-
*/
|
|
544
|
-
dblclick: MouseEvent;
|
|
545
|
-
/**
|
|
546
|
-
* A {@link Viewer} event that fires on mouse button is down.
|
|
547
|
-
*/
|
|
548
|
-
mousedown: MouseEvent;
|
|
549
|
-
/**
|
|
550
|
-
* A {@link Viewer} event that fires on mouse leave.
|
|
551
|
-
*/
|
|
552
|
-
mouseleave: MouseEvent;
|
|
553
|
-
/**
|
|
554
|
-
* A {@link Viewer} event that fires on mouse move.
|
|
555
|
-
*/
|
|
556
|
-
mousemove: MouseEvent;
|
|
557
|
-
/**
|
|
558
|
-
* A {@link Viewer} event that fires on mouse button is up.
|
|
559
|
-
*/
|
|
560
|
-
mouseup: MouseEvent;
|
|
561
|
-
/**
|
|
562
|
-
* A {@link Viewer} event is fired when the browser determines that there are unlikely to be
|
|
563
|
-
* any more pointer events.
|
|
564
|
-
*/
|
|
565
|
-
pointercancel: PointerEvent;
|
|
566
|
-
/**
|
|
567
|
-
* A {@link Viewer} event that fires on mouse button is down.
|
|
568
|
-
*/
|
|
569
|
-
pointerdown: PointerEvent;
|
|
570
|
-
/**
|
|
571
|
-
* A {@link Viewer} event that fires on mouse leave.
|
|
572
|
-
*/
|
|
573
|
-
pointerleave: PointerEvent;
|
|
574
|
-
/**
|
|
575
|
-
* A {@link Viewer} event that fires on mouse move.
|
|
576
|
-
*/
|
|
577
|
-
pointermove: PointerEvent;
|
|
578
|
-
/**
|
|
579
|
-
* A {@link Viewer} event that fires on mouse button is up.
|
|
580
|
-
*/
|
|
581
|
-
pointerup: PointerEvent;
|
|
582
|
-
/**
|
|
583
|
-
* A {@link Viewer} event that fires touch is canceled.
|
|
584
|
-
*/
|
|
585
|
-
touchcancel: TouchEvent;
|
|
586
|
-
/**
|
|
587
|
-
* A {@link Viewer} event that fires touch is ended.
|
|
588
|
-
*/
|
|
589
|
-
touchend: TouchEvent;
|
|
590
|
-
/**
|
|
591
|
-
* A {@link Viewer} event that fires touch is moving.
|
|
592
|
-
*/
|
|
593
|
-
touchmove: TouchEvent;
|
|
594
|
-
/**
|
|
595
|
-
* A {@link Viewer} event that fires when touch is started.
|
|
596
|
-
*/
|
|
597
|
-
touchstart: TouchEvent;
|
|
598
|
-
/**
|
|
599
|
-
* A {@link Viewer} event that fires when mouse wheel is moving.
|
|
600
|
-
*/
|
|
601
|
-
wheel: MouseEvent;
|
|
602
540
|
}
|
package/package.json
CHANGED
|
@@ -21,21 +21,114 @@
|
|
|
21
21
|
// acknowledge and accept the above terms.
|
|
22
22
|
///////////////////////////////////////////////////////////////////////////////
|
|
23
23
|
|
|
24
|
-
export const
|
|
24
|
+
export const CanvasEvents = [
|
|
25
25
|
"click",
|
|
26
|
+
"contextmenu",
|
|
26
27
|
"dblclick",
|
|
27
28
|
"mousedown",
|
|
29
|
+
"mouseleave",
|
|
28
30
|
"mousemove",
|
|
29
31
|
"mouseup",
|
|
30
|
-
"
|
|
32
|
+
"pointercancel",
|
|
31
33
|
"pointerdown",
|
|
34
|
+
"pointerleave",
|
|
32
35
|
"pointermove",
|
|
33
36
|
"pointerup",
|
|
34
|
-
"pointerleave",
|
|
35
|
-
"pointercancel",
|
|
36
|
-
"wheel",
|
|
37
|
-
"touchstart",
|
|
38
|
-
"touchmove",
|
|
39
|
-
"touchend",
|
|
40
37
|
"touchcancel",
|
|
38
|
+
"touchend",
|
|
39
|
+
"touchmove",
|
|
40
|
+
"touchstart",
|
|
41
|
+
"wheel",
|
|
41
42
|
];
|
|
43
|
+
|
|
44
|
+
export const CANVAS_EVENTS = CanvasEvents;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Canvas Events
|
|
48
|
+
*/
|
|
49
|
+
export interface CanvasEventMap {
|
|
50
|
+
/**
|
|
51
|
+
* Event that fires on mouse click.
|
|
52
|
+
*/
|
|
53
|
+
click: MouseEvent;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Event that fires when the user attempts to open a context menu.
|
|
57
|
+
*/
|
|
58
|
+
contextmenu: PointerEvent;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Event that fires on mouse double click.
|
|
62
|
+
*/
|
|
63
|
+
dblclick: MouseEvent;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Event that fires on mouse button is down.
|
|
67
|
+
*/
|
|
68
|
+
mousedown: MouseEvent;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Event that fires on mouse leave.
|
|
72
|
+
*/
|
|
73
|
+
mouseleave: MouseEvent;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Event that fires on mouse move.
|
|
77
|
+
*/
|
|
78
|
+
mousemove: MouseEvent;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Event that fires on mouse button is up.
|
|
82
|
+
*/
|
|
83
|
+
mouseup: MouseEvent;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Event is fired when the browser determines that there are unlikely to be any more pointer events.
|
|
87
|
+
*/
|
|
88
|
+
pointercancel: PointerEvent;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Event that fires on mouse button is down.
|
|
92
|
+
*/
|
|
93
|
+
pointerdown: PointerEvent;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Event that fires on mouse leave.
|
|
97
|
+
*/
|
|
98
|
+
pointerleave: PointerEvent;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Event that fires on mouse move.
|
|
102
|
+
*/
|
|
103
|
+
pointermove: PointerEvent;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Event that fires on mouse button is up.
|
|
107
|
+
*/
|
|
108
|
+
pointerup: PointerEvent;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Event that fires touch is canceled.
|
|
112
|
+
*/
|
|
113
|
+
touchcancel: TouchEvent;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Event that fires touch is ended.
|
|
117
|
+
*/
|
|
118
|
+
touchend: TouchEvent;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Event that fires touch is moving.
|
|
122
|
+
*/
|
|
123
|
+
touchmove: TouchEvent;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Event that fires when touch is started.
|
|
127
|
+
*/
|
|
128
|
+
touchstart: TouchEvent;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Event that fires when mouse wheel is moving.
|
|
132
|
+
*/
|
|
133
|
+
wheel: MouseEvent;
|
|
134
|
+
}
|