@vpmedia/phaser 1.94.0 → 1.96.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/CHANGELOG.md +41 -0
- package/package.json +11 -11
- package/src/phaser/core/animation.js +79 -56
- package/src/phaser/core/animation_manager.js +55 -55
- package/src/phaser/core/animation_parser.js +2 -2
- package/src/phaser/core/cache.js +154 -154
- package/src/phaser/core/device.js +2 -1
- package/src/phaser/core/device_util.js +27 -27
- package/src/phaser/core/dom.js +43 -43
- package/src/phaser/core/event_manager.js +63 -63
- package/src/phaser/core/factory.js +47 -47
- package/src/phaser/core/frame.js +30 -30
- package/src/phaser/core/frame_data.js +30 -28
- package/src/phaser/core/frame_util.js +8 -8
- package/src/phaser/core/game.js +35 -19
- package/src/phaser/core/input_pointer.js +18 -0
- package/src/phaser/core/loader.js +171 -171
- package/src/phaser/core/loader_parser.js +22 -22
- package/src/phaser/core/raf.js +1 -1
- package/src/phaser/core/scale_manager.js +3 -2
- package/src/phaser/core/scene.js +16 -10
- package/src/phaser/core/scene_manager.js +51 -43
- package/src/phaser/core/signal.js +56 -52
- package/src/phaser/core/sound.js +54 -54
- package/src/phaser/core/sound_manager.js +49 -49
- package/src/phaser/core/stage.js +16 -16
- package/src/phaser/core/time.js +54 -30
- package/src/phaser/core/timer.js +82 -64
- package/src/phaser/core/timer_event.js +9 -9
- package/src/phaser/core/tween.js +106 -90
- package/src/phaser/core/tween_data.js +30 -30
- package/src/phaser/core/tween_manager.js +32 -24
- package/src/phaser/core/world.js +4 -3
- package/src/phaser/display/bitmap_text.js +72 -54
- package/src/phaser/display/button.js +48 -47
- package/src/phaser/display/canvas/buffer.js +8 -8
- package/src/phaser/display/canvas/graphics.js +8 -8
- package/src/phaser/display/canvas/masker.js +5 -5
- package/src/phaser/display/canvas/pool.js +18 -18
- package/src/phaser/display/canvas/renderer.js +17 -16
- package/src/phaser/display/canvas/tinter.js +22 -22
- package/src/phaser/display/canvas/util.js +42 -42
- package/src/phaser/display/display_object.js +119 -108
- package/src/phaser/display/graphics.js +129 -112
- package/src/phaser/display/graphics_data.js +10 -10
- package/src/phaser/display/graphics_data_util.js +3 -3
- package/src/phaser/display/group.js +63 -50
- package/src/phaser/display/image.js +68 -50
- package/src/phaser/display/sprite_batch.js +2 -2
- package/src/phaser/display/sprite_util.js +19 -19
- package/src/phaser/display/text.js +217 -187
- package/src/phaser/display/webgl/abstract_filter.js +4 -4
- package/src/phaser/display/webgl/base_texture.js +9 -9
- package/src/phaser/display/webgl/blend_manager.js +7 -7
- package/src/phaser/display/webgl/earcut.js +95 -95
- package/src/phaser/display/webgl/earcut_node.js +4 -4
- package/src/phaser/display/webgl/fast_sprite_batch.js +15 -15
- package/src/phaser/display/webgl/filter_manager.js +9 -9
- package/src/phaser/display/webgl/filter_texture.js +10 -10
- package/src/phaser/display/webgl/graphics.js +37 -37
- package/src/phaser/display/webgl/graphics_data.js +4 -4
- package/src/phaser/display/webgl/mask_manager.js +6 -6
- package/src/phaser/display/webgl/render_texture.js +16 -16
- package/src/phaser/display/webgl/renderer.js +21 -20
- package/src/phaser/display/webgl/shader/complex.js +4 -4
- package/src/phaser/display/webgl/shader/fast.js +4 -4
- package/src/phaser/display/webgl/shader/normal.js +8 -8
- package/src/phaser/display/webgl/shader/primitive.js +4 -4
- package/src/phaser/display/webgl/shader/strip.js +4 -4
- package/src/phaser/display/webgl/shader_manager.js +9 -9
- package/src/phaser/display/webgl/sprite_batch.js +18 -18
- package/src/phaser/display/webgl/stencil_manager.js +16 -16
- package/src/phaser/display/webgl/texture.js +13 -13
- package/src/phaser/display/webgl/texture_util.js +8 -8
- package/src/phaser/display/webgl/util.js +25 -25
- package/src/phaser/geom/circle.js +74 -69
- package/src/phaser/geom/ellipse.js +33 -28
- package/src/phaser/geom/line.js +96 -93
- package/src/phaser/geom/matrix.js +61 -54
- package/src/phaser/geom/point.js +99 -96
- package/src/phaser/geom/polygon.js +27 -22
- package/src/phaser/geom/rectangle.js +137 -132
- package/src/phaser/geom/rounded_rectangle.js +12 -12
- package/src/phaser/geom/util/circle.js +33 -33
- package/src/phaser/geom/util/ellipse.js +5 -5
- package/src/phaser/geom/util/line.js +26 -26
- package/src/phaser/geom/util/matrix.js +8 -8
- package/src/phaser/geom/util/point.js +97 -97
- package/src/phaser/geom/util/polygon.js +4 -4
- package/src/phaser/geom/util/rectangle.js +74 -74
- package/src/phaser/geom/util/rounded_rectangle.js +4 -4
- package/src/phaser/util/math.js +81 -81
- package/types/phaser/core/animation.d.ts +79 -56
- package/types/phaser/core/animation.d.ts.map +1 -1
- package/types/phaser/core/animation_manager.d.ts +55 -55
- package/types/phaser/core/animation_parser.d.ts +3 -2
- package/types/phaser/core/animation_parser.d.ts.map +1 -1
- package/types/phaser/core/cache.d.ts +154 -154
- package/types/phaser/core/device.d.ts.map +1 -1
- package/types/phaser/core/dom.d.ts +51 -44
- package/types/phaser/core/dom.d.ts.map +1 -1
- package/types/phaser/core/event_manager.d.ts +63 -63
- package/types/phaser/core/factory.d.ts +47 -47
- package/types/phaser/core/frame.d.ts +30 -30
- package/types/phaser/core/frame_data.d.ts +28 -27
- package/types/phaser/core/frame_data.d.ts.map +1 -1
- package/types/phaser/core/game.d.ts +54 -21
- package/types/phaser/core/game.d.ts.map +1 -1
- package/types/phaser/core/input_pointer.d.ts +18 -0
- package/types/phaser/core/input_pointer.d.ts.map +1 -1
- package/types/phaser/core/loader.d.ts +175 -172
- package/types/phaser/core/loader.d.ts.map +1 -1
- package/types/phaser/core/loader_parser.d.ts.map +1 -1
- package/types/phaser/core/raf.d.ts +1 -1
- package/types/phaser/core/scale_manager.d.ts +6 -5
- package/types/phaser/core/scale_manager.d.ts.map +1 -1
- package/types/phaser/core/scene.d.ts +15 -9
- package/types/phaser/core/scene.d.ts.map +1 -1
- package/types/phaser/core/scene_manager.d.ts +51 -43
- package/types/phaser/core/scene_manager.d.ts.map +1 -1
- package/types/phaser/core/signal.d.ts +54 -51
- package/types/phaser/core/signal.d.ts.map +1 -1
- package/types/phaser/core/sound.d.ts +54 -54
- package/types/phaser/core/sound_manager.d.ts +49 -49
- package/types/phaser/core/stage.d.ts +10 -10
- package/types/phaser/core/time.d.ts +54 -30
- package/types/phaser/core/time.d.ts.map +1 -1
- package/types/phaser/core/timer.d.ts +82 -64
- package/types/phaser/core/timer.d.ts.map +1 -1
- package/types/phaser/core/timer_event.d.ts +9 -9
- package/types/phaser/core/tween.d.ts +106 -90
- package/types/phaser/core/tween.d.ts.map +1 -1
- package/types/phaser/core/tween_data.d.ts +30 -30
- package/types/phaser/core/tween_manager.d.ts +35 -67
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/core/world.d.ts +4 -3
- package/types/phaser/core/world.d.ts.map +1 -1
- package/types/phaser/display/bitmap_text.d.ts +76 -53
- package/types/phaser/display/bitmap_text.d.ts.map +1 -1
- package/types/phaser/display/button.d.ts +47 -46
- package/types/phaser/display/button.d.ts.map +1 -1
- package/types/phaser/display/canvas/buffer.d.ts +8 -8
- package/types/phaser/display/canvas/graphics.d.ts +3 -3
- package/types/phaser/display/canvas/graphics.d.ts.map +1 -1
- package/types/phaser/display/canvas/pool.d.ts +6 -3
- package/types/phaser/display/canvas/pool.d.ts.map +1 -1
- package/types/phaser/display/canvas/renderer.d.ts +18 -17
- package/types/phaser/display/canvas/renderer.d.ts.map +1 -1
- package/types/phaser/display/canvas/util.d.ts +6 -6
- package/types/phaser/display/canvas/util.d.ts.map +1 -1
- package/types/phaser/display/display_object.d.ts +119 -108
- package/types/phaser/display/display_object.d.ts.map +1 -1
- package/types/phaser/display/graphics.d.ts +118 -102
- package/types/phaser/display/graphics.d.ts.map +1 -1
- package/types/phaser/display/graphics_data.d.ts +10 -10
- package/types/phaser/display/group.d.ts +59 -47
- package/types/phaser/display/group.d.ts.map +1 -1
- package/types/phaser/display/image.d.ts +58 -45
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/text.d.ts +237 -188
- package/types/phaser/display/text.d.ts.map +1 -1
- package/types/phaser/display/webgl/abstract_filter.d.ts +4 -4
- package/types/phaser/display/webgl/base_texture.d.ts +10 -10
- package/types/phaser/display/webgl/base_texture.d.ts.map +1 -1
- package/types/phaser/display/webgl/blend_manager.d.ts +6 -6
- package/types/phaser/display/webgl/earcut.d.ts +95 -95
- package/types/phaser/display/webgl/earcut_node.d.ts +4 -4
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts +15 -15
- package/types/phaser/display/webgl/filter_manager.d.ts +8 -8
- package/types/phaser/display/webgl/filter_texture.d.ts +10 -10
- package/types/phaser/display/webgl/graphics.d.ts +2 -2
- package/types/phaser/display/webgl/graphics.d.ts.map +1 -1
- package/types/phaser/display/webgl/graphics_data.d.ts +4 -4
- package/types/phaser/display/webgl/render_texture.d.ts +16 -16
- package/types/phaser/display/webgl/renderer.d.ts +21 -20
- package/types/phaser/display/webgl/renderer.d.ts.map +1 -1
- package/types/phaser/display/webgl/shader/complex.d.ts +4 -4
- package/types/phaser/display/webgl/shader/fast.d.ts +4 -4
- package/types/phaser/display/webgl/shader/normal.d.ts +8 -8
- package/types/phaser/display/webgl/shader/primitive.d.ts +4 -4
- package/types/phaser/display/webgl/shader/strip.d.ts +4 -4
- package/types/phaser/display/webgl/shader_manager.d.ts +8 -8
- package/types/phaser/display/webgl/sprite_batch.d.ts +17 -17
- package/types/phaser/display/webgl/stencil_manager.d.ts +15 -15
- package/types/phaser/display/webgl/texture.d.ts +12 -12
- package/types/phaser/display/webgl/texture_util.d.ts +4 -2
- package/types/phaser/display/webgl/texture_util.d.ts.map +1 -1
- package/types/phaser/geom/circle.d.ts +74 -69
- package/types/phaser/geom/circle.d.ts.map +1 -1
- package/types/phaser/geom/ellipse.d.ts +33 -28
- package/types/phaser/geom/ellipse.d.ts.map +1 -1
- package/types/phaser/geom/line.d.ts +96 -93
- package/types/phaser/geom/line.d.ts.map +1 -1
- package/types/phaser/geom/matrix.d.ts +61 -54
- package/types/phaser/geom/matrix.d.ts.map +1 -1
- package/types/phaser/geom/point.d.ts +99 -96
- package/types/phaser/geom/point.d.ts.map +1 -1
- package/types/phaser/geom/polygon.d.ts +29 -23
- package/types/phaser/geom/polygon.d.ts.map +1 -1
- package/types/phaser/geom/rectangle.d.ts +137 -132
- package/types/phaser/geom/rectangle.d.ts.map +1 -1
- package/types/phaser/geom/rounded_rectangle.d.ts +12 -12
- package/types/phaser/geom/util/point.d.ts +1 -1
- package/types/phaser/geom/util/point.d.ts.map +1 -1
- package/pnpm-workspace.yaml +0 -4
|
@@ -1,105 +1,112 @@
|
|
|
1
1
|
export class Matrix {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {number} a -
|
|
5
|
-
* @param {number} b -
|
|
6
|
-
* @param {number} c -
|
|
7
|
-
* @param {number} d -
|
|
8
|
-
* @param {number} tx -
|
|
9
|
-
* @param {number} ty -
|
|
3
|
+
* Creates a new Matrix instance.
|
|
4
|
+
* @param {number} a - The a component of the matrix (default: 1).
|
|
5
|
+
* @param {number} b - The b component of the matrix (default: 0).
|
|
6
|
+
* @param {number} c - The c component of the matrix (default: 0).
|
|
7
|
+
* @param {number} d - The d component of the matrix (default: 1).
|
|
8
|
+
* @param {number} tx - The tx component of the matrix (default: 0).
|
|
9
|
+
* @param {number} ty - The ty component of the matrix (default: 0).
|
|
10
10
|
*/
|
|
11
11
|
constructor(a?: number, b?: number, c?: number, d?: number, tx?: number, ty?: number);
|
|
12
|
+
/** @type {number} */
|
|
12
13
|
a: number;
|
|
14
|
+
/** @type {number} */
|
|
13
15
|
b: number;
|
|
16
|
+
/** @type {number} */
|
|
14
17
|
c: number;
|
|
18
|
+
/** @type {number} */
|
|
15
19
|
d: number;
|
|
20
|
+
/** @type {number} */
|
|
16
21
|
tx: number;
|
|
22
|
+
/** @type {number} */
|
|
17
23
|
ty: number;
|
|
24
|
+
/** @type {number} */
|
|
18
25
|
type: number;
|
|
19
26
|
/**
|
|
20
|
-
*
|
|
21
|
-
* @param {number[]} array -
|
|
22
|
-
* @returns {Matrix}
|
|
27
|
+
* Sets the matrix components from an array.
|
|
28
|
+
* @param {number[]} array - The array to read the matrix components from (should have 6 elements).
|
|
29
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
23
30
|
*/
|
|
24
31
|
fromArray(array: number[]): Matrix;
|
|
25
32
|
/**
|
|
26
|
-
*
|
|
27
|
-
* @param {number} a -
|
|
28
|
-
* @param {number} b -
|
|
29
|
-
* @param {number} c -
|
|
30
|
-
* @param {number} d -
|
|
31
|
-
* @param {number} tx -
|
|
32
|
-
* @param {number} ty -
|
|
33
|
-
* @returns {Matrix}
|
|
33
|
+
* Sets the matrix components to new values.
|
|
34
|
+
* @param {number} a - The new a component of the matrix.
|
|
35
|
+
* @param {number} b - The new b component of the matrix.
|
|
36
|
+
* @param {number} c - The new c component of the matrix.
|
|
37
|
+
* @param {number} d - The new d component of the matrix.
|
|
38
|
+
* @param {number} tx - The new tx component of the matrix.
|
|
39
|
+
* @param {number} ty - The new ty component of the matrix.
|
|
40
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
34
41
|
*/
|
|
35
42
|
setTo(a: number, b: number, c: number, d: number, tx: number, ty: number): Matrix;
|
|
36
43
|
/**
|
|
37
|
-
*
|
|
38
|
-
* @returns {Matrix}
|
|
44
|
+
* Creates a clone of this matrix.
|
|
45
|
+
* @returns {Matrix} A new matrix with the same values as this one.
|
|
39
46
|
*/
|
|
40
47
|
clone(): Matrix;
|
|
41
48
|
/**
|
|
42
|
-
*
|
|
43
|
-
* @param {Matrix} matrix -
|
|
44
|
-
* @returns {Matrix}
|
|
49
|
+
* Copies the values of this matrix to another matrix.
|
|
50
|
+
* @param {Matrix} matrix - The matrix to copy values to.
|
|
51
|
+
* @returns {Matrix} The destination matrix.
|
|
45
52
|
*/
|
|
46
53
|
copyTo(matrix: Matrix): Matrix;
|
|
47
54
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @param {Matrix} matrix -
|
|
50
|
-
* @returns {Matrix}
|
|
55
|
+
* Copies the values from another matrix to this matrix.
|
|
56
|
+
* @param {Matrix} matrix - The matrix to copy values from.
|
|
57
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
51
58
|
*/
|
|
52
59
|
copyFrom(matrix: Matrix): Matrix;
|
|
53
60
|
/**
|
|
54
|
-
*
|
|
55
|
-
* @param {boolean} transpose -
|
|
56
|
-
* @param {Float32Array} output -
|
|
57
|
-
* @returns {Float32Array}
|
|
61
|
+
* Converts this matrix to a Float32Array.
|
|
62
|
+
* @param {boolean} transpose - Whether to transpose the matrix (default: false).
|
|
63
|
+
* @param {Float32Array} output - The array to store the result in (optional).
|
|
64
|
+
* @returns {Float32Array} A Float32Array containing the matrix elements.
|
|
58
65
|
*/
|
|
59
66
|
toArray(transpose?: boolean, output?: Float32Array): Float32Array;
|
|
60
67
|
/**
|
|
61
|
-
*
|
|
62
|
-
* @param {Point} pos -
|
|
63
|
-
* @param {Point} output -
|
|
64
|
-
* @returns {Point}
|
|
68
|
+
* Applies this matrix to a point.
|
|
69
|
+
* @param {Point} pos - The point to apply the matrix to.
|
|
70
|
+
* @param {Point} output - The point to store the result in (optional).
|
|
71
|
+
* @returns {Point} The transformed point.
|
|
65
72
|
*/
|
|
66
73
|
apply(pos: Point, output?: Point): Point;
|
|
67
74
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @param {Point} pos -
|
|
70
|
-
* @param {Point} output -
|
|
71
|
-
* @returns {Point}
|
|
75
|
+
* Applies the inverse of this matrix to a point.
|
|
76
|
+
* @param {Point} pos - The point to apply the inverse matrix to.
|
|
77
|
+
* @param {Point} output - The point to store the result in (optional).
|
|
78
|
+
* @returns {Point} The transformed point.
|
|
72
79
|
*/
|
|
73
80
|
applyInverse(pos: Point, output?: Point): Point;
|
|
74
81
|
/**
|
|
75
|
-
*
|
|
76
|
-
* @param {number} x -
|
|
77
|
-
* @param {number} y -
|
|
78
|
-
* @returns {Matrix}
|
|
82
|
+
* Translates this matrix by the specified amounts.
|
|
83
|
+
* @param {number} x - The amount to translate in the x direction.
|
|
84
|
+
* @param {number} y - The amount to translate in the y direction.
|
|
85
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
79
86
|
*/
|
|
80
87
|
translate(x: number, y: number): Matrix;
|
|
81
88
|
/**
|
|
82
|
-
*
|
|
83
|
-
* @param {number} x -
|
|
84
|
-
* @param {number} y -
|
|
85
|
-
* @returns {Matrix}
|
|
89
|
+
* Scales this matrix by the specified amounts.
|
|
90
|
+
* @param {number} x - The amount to scale in the x direction.
|
|
91
|
+
* @param {number} y - The amount to scale in the y direction.
|
|
92
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
86
93
|
*/
|
|
87
94
|
scale(x: number, y: number): Matrix;
|
|
88
95
|
/**
|
|
89
|
-
*
|
|
90
|
-
* @param {number} angle -
|
|
91
|
-
* @returns {Matrix}
|
|
96
|
+
* Rotates this matrix by the specified angle.
|
|
97
|
+
* @param {number} angle - The angle in radians to rotate by.
|
|
98
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
92
99
|
*/
|
|
93
100
|
rotate(angle: number): Matrix;
|
|
94
101
|
/**
|
|
95
|
-
*
|
|
96
|
-
* @param {Matrix} matrix -
|
|
97
|
-
* @returns {Matrix}
|
|
102
|
+
* Appends another matrix to this matrix (multiplying matrices).
|
|
103
|
+
* @param {Matrix} matrix - The matrix to append.
|
|
104
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
98
105
|
*/
|
|
99
106
|
append(matrix: Matrix): Matrix;
|
|
100
107
|
/**
|
|
101
|
-
*
|
|
102
|
-
* @returns {Matrix}
|
|
108
|
+
* Sets this matrix to an identity matrix (no transformation).
|
|
109
|
+
* @returns {Matrix} This matrix instance for chaining.
|
|
103
110
|
*/
|
|
104
111
|
identity(): Matrix;
|
|
105
112
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"matrix.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/matrix.js"],"names":[],"mappings":"AAIA;IACE;;;;;;;;OAQG;IACH,gBAPW,MAAM,MACN,MAAM,MACN,MAAM,MACN,MAAM,OACN,MAAM,OACN,MAAM,
|
|
1
|
+
{"version":3,"file":"matrix.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/matrix.js"],"names":[],"mappings":"AAIA;IACE;;;;;;;;OAQG;IACH,gBAPW,MAAM,MACN,MAAM,MACN,MAAM,MACN,MAAM,OACN,MAAM,OACN,MAAM,EAiBhB;IAdC,qBAAqB;IACrB,GADW,MAAM,CACP;IACV,qBAAqB;IACrB,GADW,MAAM,CACP;IACV,qBAAqB;IACrB,GADW,MAAM,CACP;IACV,qBAAqB;IACrB,GADW,MAAM,CACP;IACV,qBAAqB;IACrB,IADW,MAAM,CACL;IACZ,qBAAqB;IACrB,IADW,MAAM,CACL;IACZ,qBAAqB;IACrB,MADW,MAAM,CACM;IAGzB;;;;OAIG;IACH,iBAHW,MAAM,EAAE,GACN,MAAM,CAIlB;IAED;;;;;;;;;OASG;IACH,SARW,MAAM,KACN,MAAM,KACN,MAAM,KACN,MAAM,MACN,MAAM,MACN,MAAM,GACJ,MAAM,CAUlB;IAED;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;;OAIG;IACH,eAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;OAIG;IACH,iBAHW,MAAM,GACJ,MAAM,CAUlB;IAED;;;;;OAKG;IACH,oBAJW,OAAO,WACP,YAAY,GACV,YAAY,CA0BxB;IAED;;;;;OAKG;IACH,WAJW,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;IAED;;;;;OAKG;IACH,kBAJW,KAAK,WACL,KAAK,GACH,KAAK,CAUjB;IAED;;;;;OAKG;IACH,aAJW,MAAM,KACN,MAAM,GACJ,MAAM,CAMlB;IAED;;;;;OAKG;IACH,SAJW,MAAM,KACN,MAAM,GACJ,MAAM,CAUlB;IAED;;;;OAIG;IACH,cAHW,MAAM,GACJ,MAAM,CAelB;IAED;;;;OAIG;IACH,eAHW,MAAM,GACJ,MAAM,CAclB;IAED;;;OAGG;IACH,YAFa,MAAM,CAIlB;CACF;sBApOqB,YAAY"}
|
|
@@ -1,194 +1,197 @@
|
|
|
1
1
|
export class Point {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {number} x -
|
|
5
|
-
* @param {number} y -
|
|
3
|
+
* Creates a new Point instance.
|
|
4
|
+
* @param {number} x - The x coordinate of the point (default: 0).
|
|
5
|
+
* @param {number} y - The y coordinate of the point (default: 0).
|
|
6
6
|
*/
|
|
7
7
|
constructor(x?: number, y?: number);
|
|
8
|
+
/** @type {number} */
|
|
8
9
|
x: number;
|
|
10
|
+
/** @type {number} */
|
|
9
11
|
y: number;
|
|
12
|
+
/** @type {number} */
|
|
10
13
|
type: number;
|
|
11
14
|
/**
|
|
12
|
-
*
|
|
13
|
-
* @param {Point} source -
|
|
14
|
-
* @returns {Point}
|
|
15
|
+
* Copies the coordinates from another point to this point.
|
|
16
|
+
* @param {Point} source - The point to copy coordinates from.
|
|
17
|
+
* @returns {Point} This point instance for chaining.
|
|
15
18
|
*/
|
|
16
19
|
copyFrom(source: Point): Point;
|
|
17
20
|
/**
|
|
18
|
-
*
|
|
19
|
-
* @returns {Point}
|
|
21
|
+
* Returns a new point with the x and y coordinates swapped.
|
|
22
|
+
* @returns {Point} A new point instance with swapped coordinates.
|
|
20
23
|
*/
|
|
21
24
|
invert(): Point;
|
|
22
25
|
/**
|
|
23
|
-
*
|
|
24
|
-
* @param {number} x -
|
|
25
|
-
* @param {number} y -
|
|
26
|
-
* @returns {Point}
|
|
26
|
+
* Sets the coordinates of this point to new values.
|
|
27
|
+
* @param {number} x - The new x coordinate for the point.
|
|
28
|
+
* @param {number} y - The new y coordinate for the point.
|
|
29
|
+
* @returns {Point} This point instance for chaining.
|
|
27
30
|
*/
|
|
28
31
|
setTo(x: number, y: number): Point;
|
|
29
32
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @param {number} x -
|
|
32
|
-
* @param {number} y -
|
|
33
|
-
* @returns {Point}
|
|
34
|
-
* @deprecated
|
|
33
|
+
* Sets the coordinates of this point to new values.
|
|
34
|
+
* @param {number} x - The new x coordinate for the point.
|
|
35
|
+
* @param {number} y - The new y coordinate for the point.
|
|
36
|
+
* @returns {Point} This point instance for chaining.
|
|
37
|
+
* @deprecated Use setTo instead.
|
|
35
38
|
*/
|
|
36
39
|
set(x: number, y: number): Point;
|
|
37
40
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @param {number} x -
|
|
40
|
-
* @param {number} y -
|
|
41
|
-
* @returns {Point}
|
|
41
|
+
* Adds the given x and y values to the point's coordinates.
|
|
42
|
+
* @param {number} x - The amount to add to the x coordinate.
|
|
43
|
+
* @param {number} y - The amount to add to the y coordinate.
|
|
44
|
+
* @returns {Point} This point instance for chaining.
|
|
42
45
|
*/
|
|
43
46
|
add(x: number, y: number): Point;
|
|
44
47
|
/**
|
|
45
|
-
*
|
|
46
|
-
* @param {number} x -
|
|
47
|
-
* @param {number} y -
|
|
48
|
-
* @returns {Point}
|
|
48
|
+
* Subtracts the given x and y values from the point's coordinates.
|
|
49
|
+
* @param {number} x - The amount to subtract from the x coordinate.
|
|
50
|
+
* @param {number} y - The amount to subtract from the y coordinate.
|
|
51
|
+
* @returns {Point} This point instance for chaining.
|
|
49
52
|
*/
|
|
50
53
|
subtract(x: number, y: number): Point;
|
|
51
54
|
/**
|
|
52
|
-
*
|
|
53
|
-
* @param {number} x -
|
|
54
|
-
* @param {number} y -
|
|
55
|
-
* @returns {Point}
|
|
55
|
+
* Multiplies the point's coordinates by the given x and y values.
|
|
56
|
+
* @param {number} x - The amount to multiply the x coordinate by.
|
|
57
|
+
* @param {number} y - The amount to multiply the y coordinate by.
|
|
58
|
+
* @returns {Point} This point instance for chaining.
|
|
56
59
|
*/
|
|
57
60
|
multiply(x: number, y: number): Point;
|
|
58
61
|
/**
|
|
59
|
-
*
|
|
60
|
-
* @param {number} x -
|
|
61
|
-
* @param {number} y -
|
|
62
|
-
* @returns {Point}
|
|
62
|
+
* Divides the point's coordinates by the given x and y values.
|
|
63
|
+
* @param {number} x - The amount to divide the x coordinate by.
|
|
64
|
+
* @param {number} y - The amount to divide the y coordinate by.
|
|
65
|
+
* @returns {Point} This point instance for chaining.
|
|
63
66
|
*/
|
|
64
67
|
divide(x: number, y: number): Point;
|
|
65
68
|
/**
|
|
66
|
-
*
|
|
67
|
-
* @param {number} min -
|
|
68
|
-
* @param {number} max -
|
|
69
|
-
* @returns {Point}
|
|
69
|
+
* Constrains the x coordinate of this point to the given range.
|
|
70
|
+
* @param {number} min - The minimum value for the x coordinate.
|
|
71
|
+
* @param {number} max - The maximum value for the x coordinate.
|
|
72
|
+
* @returns {Point} This point instance for chaining.
|
|
70
73
|
*/
|
|
71
74
|
clampX(min: number, max: number): Point;
|
|
72
75
|
/**
|
|
73
|
-
*
|
|
74
|
-
* @param {number} min -
|
|
75
|
-
* @param {number} max -
|
|
76
|
-
* @returns {Point}
|
|
76
|
+
* Constrains the y coordinate of this point to the given range.
|
|
77
|
+
* @param {number} min - The minimum value for the y coordinate.
|
|
78
|
+
* @param {number} max - The maximum value for the y coordinate.
|
|
79
|
+
* @returns {Point} This point instance for chaining.
|
|
77
80
|
*/
|
|
78
81
|
clampY(min: number, max: number): Point;
|
|
79
82
|
/**
|
|
80
|
-
*
|
|
81
|
-
* @param {number} min -
|
|
82
|
-
* @param {number} max -
|
|
83
|
-
* @returns {Point}
|
|
83
|
+
* Constrains both coordinates of this point to the given range.
|
|
84
|
+
* @param {number} min - The minimum value for both coordinates.
|
|
85
|
+
* @param {number} max - The maximum value for both coordinates.
|
|
86
|
+
* @returns {Point} This point instance for chaining.
|
|
84
87
|
*/
|
|
85
88
|
clamp(min: number, max: number): Point;
|
|
86
89
|
/**
|
|
87
|
-
*
|
|
88
|
-
* @returns {Point}
|
|
90
|
+
* Creates a clone of this point.
|
|
91
|
+
* @returns {Point} A new point with the same coordinates as this one.
|
|
89
92
|
*/
|
|
90
93
|
clone(): Point;
|
|
91
94
|
/**
|
|
92
|
-
*
|
|
93
|
-
* @param {Point} dest -
|
|
94
|
-
* @returns {Point}
|
|
95
|
+
* Copies the coordinates of this point to another point.
|
|
96
|
+
* @param {Point} dest - The point to copy coordinates to.
|
|
97
|
+
* @returns {Point} The destination point.
|
|
95
98
|
*/
|
|
96
99
|
copyTo(dest: Point): Point;
|
|
97
100
|
/**
|
|
98
|
-
*
|
|
99
|
-
* @param {Point} b -
|
|
100
|
-
* @returns {number}
|
|
101
|
+
* Calculates the distance between this point and another point.
|
|
102
|
+
* @param {Point} b - The other point to calculate the distance to.
|
|
103
|
+
* @returns {number} The distance between the two points.
|
|
101
104
|
*/
|
|
102
105
|
distance(b: Point): number;
|
|
103
106
|
/**
|
|
104
|
-
*
|
|
105
|
-
* @param {Point} a -
|
|
106
|
-
* @returns {boolean}
|
|
107
|
+
* Checks if this point is equal to another point.
|
|
108
|
+
* @param {Point} a - The other point to compare with.
|
|
109
|
+
* @returns {boolean} True if the points have the same coordinates, false otherwise.
|
|
107
110
|
*/
|
|
108
111
|
equals(a: Point): boolean;
|
|
109
112
|
/**
|
|
110
|
-
*
|
|
111
|
-
* @param {Point} a -
|
|
112
|
-
* @param {boolean} asDegrees -
|
|
113
|
-
* @returns {number}
|
|
113
|
+
* Calculates the angle between this point and another point.
|
|
114
|
+
* @param {Point} a - The other point to calculate the angle to.
|
|
115
|
+
* @param {boolean} asDegrees - Whether to return the result in degrees (default: false).
|
|
116
|
+
* @returns {number} The angle between the two points in radians or degrees.
|
|
114
117
|
*/
|
|
115
118
|
angle(a: Point, asDegrees?: boolean): number;
|
|
116
119
|
/**
|
|
117
|
-
*
|
|
118
|
-
* @param {number} x -
|
|
119
|
-
* @param {number} y -
|
|
120
|
-
* @param {number} angle -
|
|
121
|
-
* @param {boolean} asDegrees -
|
|
122
|
-
* @param {number | null | undefined} dist -
|
|
123
|
-
* @returns {Point}
|
|
120
|
+
* Rotates this point around another point by a given angle.
|
|
121
|
+
* @param {number} x - The x coordinate of the center point to rotate around.
|
|
122
|
+
* @param {number} y - The y coordinate of the center point to rotate around.
|
|
123
|
+
* @param {number} angle - The angle in radians to rotate by.
|
|
124
|
+
* @param {boolean} asDegrees - Whether the angle is provided in degrees (default: false).
|
|
125
|
+
* @param {number | null | undefined} dist - The distance to rotate from (default: null).
|
|
126
|
+
* @returns {Point} This point instance for chaining.
|
|
124
127
|
*/
|
|
125
128
|
rotate(x: number, y: number, angle: number, asDegrees: boolean, dist?: number | null | undefined): Point;
|
|
126
129
|
/**
|
|
127
|
-
*
|
|
128
|
-
* @returns {number}
|
|
130
|
+
* Calculates the magnitude (length) of this point from the origin.
|
|
131
|
+
* @returns {number} The magnitude of the point.
|
|
129
132
|
*/
|
|
130
133
|
getMagnitude(): number;
|
|
131
134
|
/**
|
|
132
|
-
*
|
|
133
|
-
* @returns {number}
|
|
135
|
+
* Calculates the square of the magnitude (length) of this point from the origin.
|
|
136
|
+
* @returns {number} The square of the magnitude of the point.
|
|
134
137
|
*/
|
|
135
138
|
getMagnitudeSq(): number;
|
|
136
139
|
/**
|
|
137
|
-
*
|
|
138
|
-
* @param {number} magnitude -
|
|
139
|
-
* @returns {Point}
|
|
140
|
+
* Sets the magnitude (length) of this point while preserving its direction.
|
|
141
|
+
* @param {number} magnitude - The new magnitude for the point.
|
|
142
|
+
* @returns {Point} This point instance for chaining.
|
|
140
143
|
*/
|
|
141
144
|
setMagnitude(magnitude: number): Point;
|
|
142
145
|
/**
|
|
143
|
-
*
|
|
144
|
-
* @returns {Point}
|
|
146
|
+
* Normalizes this point to have a magnitude of 1 while preserving its direction.
|
|
147
|
+
* @returns {Point} This point instance for chaining.
|
|
145
148
|
*/
|
|
146
149
|
normalize(): Point;
|
|
147
150
|
/**
|
|
148
|
-
*
|
|
149
|
-
* @returns {boolean}
|
|
151
|
+
* Checks if this point has zero magnitude (is at the origin).
|
|
152
|
+
* @returns {boolean} True if both x and y coordinates are zero, false otherwise.
|
|
150
153
|
*/
|
|
151
154
|
isZero(): boolean;
|
|
152
155
|
/**
|
|
153
|
-
*
|
|
154
|
-
* @param {Point} a -
|
|
155
|
-
* @returns {number}
|
|
156
|
+
* Calculates the dot product of this point and another point.
|
|
157
|
+
* @param {Point} a - The other point to calculate the dot product with.
|
|
158
|
+
* @returns {number} The dot product of the two points.
|
|
156
159
|
*/
|
|
157
160
|
dot(a: Point): number;
|
|
158
161
|
/**
|
|
159
|
-
*
|
|
160
|
-
* @param {Point} a -
|
|
161
|
-
* @returns {number}
|
|
162
|
+
* Calculates the cross product of this point and another point.
|
|
163
|
+
* @param {Point} a - The other point to calculate the cross product with.
|
|
164
|
+
* @returns {number} The cross product of the two points.
|
|
162
165
|
*/
|
|
163
166
|
cross(a: Point): number;
|
|
164
167
|
/**
|
|
165
|
-
*
|
|
166
|
-
* @returns {Point}
|
|
168
|
+
* Returns a perpendicular point (rotated 90 degrees counter-clockwise).
|
|
169
|
+
* @returns {Point} A new point that is perpendicular to this one.
|
|
167
170
|
*/
|
|
168
171
|
perp(): Point;
|
|
169
172
|
/**
|
|
170
|
-
*
|
|
171
|
-
* @returns {Point}
|
|
173
|
+
* Returns a perpendicular point (rotated 90 degrees clockwise).
|
|
174
|
+
* @returns {Point} A new point that is perpendicular to this one (rotated clockwise).
|
|
172
175
|
*/
|
|
173
176
|
rperp(): Point;
|
|
174
177
|
/**
|
|
175
|
-
*
|
|
176
|
-
* @returns {Point}
|
|
178
|
+
* Returns a point with the same direction as this one but with y coordinate negated.
|
|
179
|
+
* @returns {Point} A new point with the same x coordinate but negated y coordinate.
|
|
177
180
|
*/
|
|
178
181
|
normalRightHand(): Point;
|
|
179
182
|
/**
|
|
180
|
-
*
|
|
181
|
-
* @returns {Point}
|
|
183
|
+
* Returns a new point with the x and y coordinates rounded down to the nearest integer.
|
|
184
|
+
* @returns {Point} A new point with floored coordinates.
|
|
182
185
|
*/
|
|
183
186
|
floor(): Point;
|
|
184
187
|
/**
|
|
185
|
-
*
|
|
186
|
-
* @returns {Point}
|
|
188
|
+
* Returns a new point with the x and y coordinates rounded up to the nearest integer.
|
|
189
|
+
* @returns {Point} A new point with ceiled coordinates.
|
|
187
190
|
*/
|
|
188
191
|
ceil(): Point;
|
|
189
192
|
/**
|
|
190
|
-
*
|
|
191
|
-
* @returns {string}
|
|
193
|
+
* Returns a string representation of this point.
|
|
194
|
+
* @returns {string} A string representation of the point in the format "[Point (x=value y=value)]".
|
|
192
195
|
*/
|
|
193
196
|
toString(): string;
|
|
194
197
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"point.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/point.js"],"names":[],"mappings":"AAGA;IACE;;;;OAIG;IACH,gBAHW,MAAM,MACN,MAAM,
|
|
1
|
+
{"version":3,"file":"point.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/point.js"],"names":[],"mappings":"AAGA;IACE;;;;OAIG;IACH,gBAHW,MAAM,MACN,MAAM,EAShB;IANC,qBAAqB;IACrB,GADW,MAAM,CACP;IACV,qBAAqB;IACrB,GADW,MAAM,CACP;IACV,qBAAqB;IACrB,MADW,MAAM,CACK;IAGxB;;;;OAIG;IACH,iBAHW,KAAK,GACH,KAAK,CAIjB;IAED;;;OAGG;IACH,UAFa,KAAK,CAIjB;IAED;;;;;OAKG;IACH,SAJW,MAAM,KACN,MAAM,GACJ,KAAK,CAMjB;IAED;;;;;;OAMG;IACH,OALW,MAAM,KACN,MAAM,GACJ,KAAK,CAOjB;IAED;;;;;OAKG;IACH,OAJW,MAAM,KACN,MAAM,GACJ,KAAK,CAMjB;IAED;;;;;OAKG;IACH,YAJW,MAAM,KACN,MAAM,GACJ,KAAK,CAMjB;IAED;;;;;OAKG;IACH,YAJW,MAAM,KACN,MAAM,GACJ,KAAK,CAMjB;IAED;;;;;OAKG;IACH,UAJW,MAAM,KACN,MAAM,GACJ,KAAK,CAMjB;IAED;;;;;OAKG;IACH,YAJW,MAAM,OACN,MAAM,GACJ,KAAK,CAKjB;IAED;;;;;OAKG;IACH,YAJW,MAAM,OACN,MAAM,GACJ,KAAK,CAKjB;IAED;;;;;OAKG;IACH,WAJW,MAAM,OACN,MAAM,GACJ,KAAK,CAMjB;IAED;;;OAGG;IACH,SAFa,KAAK,CAIjB;IAED;;;;OAIG;IACH,aAHW,KAAK,GACH,KAAK,CAMjB;IAED;;;;OAIG;IACH,YAHW,KAAK,GACH,MAAM,CAIlB;IAED;;;;OAIG;IACH,UAHW,KAAK,GACH,OAAO,CAInB;IAED;;;;;OAKG;IACH,SAJW,KAAK,cACL,OAAO,GACL,MAAM,CAOlB;IAED;;;;;;;;OAQG;IACH,UAPW,MAAM,KACN,MAAM,SACN,MAAM,aACN,OAAO,SACP,MAAM,GAAG,IAAI,GAAG,SAAS,GACvB,KAAK,CAIjB;IAED;;;OAGG;IACH,gBAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,kBAFa,MAAM,CAIlB;IAED;;;;OAIG;IACH,wBAHW,MAAM,GACJ,KAAK,CAIjB;IAED;;;OAGG;IACH,aAFa,KAAK,CASjB;IAED;;;OAGG;IACH,UAFa,OAAO,CAInB;IAED;;;;OAIG;IACH,OAHW,KAAK,GACH,MAAM,CAIlB;IAED;;;;OAIG;IACH,SAHW,KAAK,GACH,MAAM,CAIlB;IAED;;;OAGG;IACH,QAFa,KAAK,CAIjB;IAED;;;OAGG;IACH,SAFa,KAAK,CAIjB;IAED;;;OAGG;IACH,mBAFa,KAAK,CAIjB;IAED;;;OAGG;IACH,SAFa,KAAK,CAIjB;IAED;;;OAGG;IACH,QAFa,KAAK,CAIjB;IAED;;;OAGG;IACH,YAFa,MAAM,CAIlB;CACF"}
|
|
@@ -1,57 +1,63 @@
|
|
|
1
1
|
export class Polygon {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {object[]} points -
|
|
3
|
+
* Creates a new Polygon instance.
|
|
4
|
+
* @param {object[]} points - The array of points to define the polygon (optional).
|
|
5
5
|
*/
|
|
6
6
|
constructor(points?: object[]);
|
|
7
|
+
/** @type {number} */
|
|
7
8
|
area: number;
|
|
8
|
-
|
|
9
|
+
/** @type {Point[]} */
|
|
10
|
+
_points: Point[];
|
|
11
|
+
/** @type {boolean} */
|
|
9
12
|
closed: boolean;
|
|
13
|
+
/** @type {boolean} */
|
|
10
14
|
flattened: boolean;
|
|
15
|
+
/** @type {number} */
|
|
11
16
|
type: number;
|
|
12
17
|
/**
|
|
13
|
-
*
|
|
14
|
-
* @param {number[]} output -
|
|
15
|
-
* @returns {number[]}
|
|
18
|
+
* Converts the polygon's points to a number array.
|
|
19
|
+
* @param {number[]} output - The array to store the result in (optional).
|
|
20
|
+
* @returns {number[]} An array of numbers representing the polygon's points.
|
|
16
21
|
*/
|
|
17
22
|
toNumberArray(output?: number[]): number[];
|
|
18
23
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @returns {Polygon}
|
|
24
|
+
* Flattens the polygon's point array to a simple numeric array.
|
|
25
|
+
* @returns {Polygon} This polygon instance for chaining.
|
|
21
26
|
*/
|
|
22
27
|
flatten(): Polygon;
|
|
23
28
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @returns {Polygon}
|
|
29
|
+
* Creates a clone of this polygon.
|
|
30
|
+
* @returns {Polygon} A new polygon with the same values as this one.
|
|
26
31
|
*/
|
|
27
32
|
clone(): Polygon;
|
|
28
33
|
/**
|
|
29
|
-
*
|
|
30
|
-
* @param {number} x -
|
|
31
|
-
* @param {number} y -
|
|
32
|
-
* @returns {boolean}
|
|
34
|
+
* Checks if the specified point is contained within this polygon.
|
|
35
|
+
* @param {number} x - The x coordinate of the point to check.
|
|
36
|
+
* @param {number} y - The y coordinate of the point to check.
|
|
37
|
+
* @returns {boolean} True if the point is contained within this polygon, false otherwise.
|
|
33
38
|
*/
|
|
34
39
|
contains(x: number, y: number): boolean;
|
|
35
40
|
/**
|
|
36
|
-
*
|
|
37
|
-
* @param {object[]} points -
|
|
38
|
-
* @returns {Polygon}
|
|
41
|
+
* Sets the polygon's points to new values.
|
|
42
|
+
* @param {object[]} points - The array of points to define the polygon.
|
|
43
|
+
* @returns {Polygon} This polygon instance for chaining.
|
|
39
44
|
*/
|
|
40
45
|
setTo(points: object[]): Polygon;
|
|
41
46
|
/**
|
|
42
|
-
*
|
|
43
|
-
* @param {number} y0 -
|
|
44
|
-
* @returns {number}
|
|
47
|
+
* Calculates the area of this polygon.
|
|
48
|
+
* @param {number} y0 - The y coordinate of the lowest boundary (internal use).
|
|
49
|
+
* @returns {number} The area of this polygon.
|
|
45
50
|
*/
|
|
46
51
|
calculateArea(y0: number): number;
|
|
47
52
|
/**
|
|
48
|
-
*
|
|
53
|
+
* Sets the points of this polygon.
|
|
49
54
|
*/
|
|
50
55
|
set points(value: object[]);
|
|
51
56
|
/**
|
|
52
|
-
*
|
|
53
|
-
* @returns {object[]}
|
|
57
|
+
* Gets the points of this polygon.
|
|
58
|
+
* @returns {object[]} The array of points that define this polygon.
|
|
54
59
|
*/
|
|
55
60
|
get points(): object[];
|
|
56
61
|
}
|
|
62
|
+
import { Point } from './point.js';
|
|
57
63
|
//# sourceMappingURL=polygon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"polygon.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/polygon.js"],"names":[],"mappings":"AAIA;IACE;;;OAGG;IACH,qBAFW,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"polygon.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/polygon.js"],"names":[],"mappings":"AAIA;IACE;;;OAGG;IACH,qBAFW,MAAM,EAAE,EAgBlB;IAbC,qBAAqB;IACrB,MADW,MAAM,CACJ;IACb,sBAAsB;IACtB,SADW,KAAK,EAAE,CACD;IACjB,sBAAsB;IACtB,QADW,OAAO,CACA;IAClB,sBAAsB;IACtB,WADW,OAAO,CACI;IACtB,qBAAqB;IACrB,MADW,MAAM,CACO;IAM1B;;;;OAIG;IACH,uBAHW,MAAM,EAAE,GACN,MAAM,EAAE,CAcpB;IAED;;;OAGG;IACH,WAFa,OAAO,CAMnB;IAED;;;OAGG;IACH,SAFa,OAAO,CAInB;IAED;;;;;OAKG;IACH,YAJW,MAAM,KACN,MAAM,GACJ,OAAO,CA2BnB;IAED;;;;OAIG;IACH,cAHW,MAAM,EAAE,GACN,OAAO,CAkCnB;IAED;;;;OAIG;IACH,kBAHW,MAAM,GACJ,MAAM,CAmBlB;IAUD;;OAEG;IACH,kBATa,MAAM,EAAE,EAgBpB;IAlBD;;;OAGG;IACH,cAFa,MAAM,EAAE,CAIpB;CAaF;sBAjLqB,YAAY"}
|