@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.
Files changed (205) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +11 -11
  3. package/src/phaser/core/animation.js +79 -56
  4. package/src/phaser/core/animation_manager.js +55 -55
  5. package/src/phaser/core/animation_parser.js +2 -2
  6. package/src/phaser/core/cache.js +154 -154
  7. package/src/phaser/core/device.js +2 -1
  8. package/src/phaser/core/device_util.js +27 -27
  9. package/src/phaser/core/dom.js +43 -43
  10. package/src/phaser/core/event_manager.js +63 -63
  11. package/src/phaser/core/factory.js +47 -47
  12. package/src/phaser/core/frame.js +30 -30
  13. package/src/phaser/core/frame_data.js +30 -28
  14. package/src/phaser/core/frame_util.js +8 -8
  15. package/src/phaser/core/game.js +35 -19
  16. package/src/phaser/core/input_pointer.js +18 -0
  17. package/src/phaser/core/loader.js +171 -171
  18. package/src/phaser/core/loader_parser.js +22 -22
  19. package/src/phaser/core/raf.js +1 -1
  20. package/src/phaser/core/scale_manager.js +3 -2
  21. package/src/phaser/core/scene.js +16 -10
  22. package/src/phaser/core/scene_manager.js +51 -43
  23. package/src/phaser/core/signal.js +56 -52
  24. package/src/phaser/core/sound.js +54 -54
  25. package/src/phaser/core/sound_manager.js +49 -49
  26. package/src/phaser/core/stage.js +16 -16
  27. package/src/phaser/core/time.js +54 -30
  28. package/src/phaser/core/timer.js +82 -64
  29. package/src/phaser/core/timer_event.js +9 -9
  30. package/src/phaser/core/tween.js +106 -90
  31. package/src/phaser/core/tween_data.js +30 -30
  32. package/src/phaser/core/tween_manager.js +32 -24
  33. package/src/phaser/core/world.js +4 -3
  34. package/src/phaser/display/bitmap_text.js +72 -54
  35. package/src/phaser/display/button.js +48 -47
  36. package/src/phaser/display/canvas/buffer.js +8 -8
  37. package/src/phaser/display/canvas/graphics.js +8 -8
  38. package/src/phaser/display/canvas/masker.js +5 -5
  39. package/src/phaser/display/canvas/pool.js +18 -18
  40. package/src/phaser/display/canvas/renderer.js +17 -16
  41. package/src/phaser/display/canvas/tinter.js +22 -22
  42. package/src/phaser/display/canvas/util.js +42 -42
  43. package/src/phaser/display/display_object.js +119 -108
  44. package/src/phaser/display/graphics.js +129 -112
  45. package/src/phaser/display/graphics_data.js +10 -10
  46. package/src/phaser/display/graphics_data_util.js +3 -3
  47. package/src/phaser/display/group.js +63 -50
  48. package/src/phaser/display/image.js +68 -50
  49. package/src/phaser/display/sprite_batch.js +2 -2
  50. package/src/phaser/display/sprite_util.js +19 -19
  51. package/src/phaser/display/text.js +217 -187
  52. package/src/phaser/display/webgl/abstract_filter.js +4 -4
  53. package/src/phaser/display/webgl/base_texture.js +9 -9
  54. package/src/phaser/display/webgl/blend_manager.js +7 -7
  55. package/src/phaser/display/webgl/earcut.js +95 -95
  56. package/src/phaser/display/webgl/earcut_node.js +4 -4
  57. package/src/phaser/display/webgl/fast_sprite_batch.js +15 -15
  58. package/src/phaser/display/webgl/filter_manager.js +9 -9
  59. package/src/phaser/display/webgl/filter_texture.js +10 -10
  60. package/src/phaser/display/webgl/graphics.js +37 -37
  61. package/src/phaser/display/webgl/graphics_data.js +4 -4
  62. package/src/phaser/display/webgl/mask_manager.js +6 -6
  63. package/src/phaser/display/webgl/render_texture.js +16 -16
  64. package/src/phaser/display/webgl/renderer.js +21 -20
  65. package/src/phaser/display/webgl/shader/complex.js +4 -4
  66. package/src/phaser/display/webgl/shader/fast.js +4 -4
  67. package/src/phaser/display/webgl/shader/normal.js +8 -8
  68. package/src/phaser/display/webgl/shader/primitive.js +4 -4
  69. package/src/phaser/display/webgl/shader/strip.js +4 -4
  70. package/src/phaser/display/webgl/shader_manager.js +9 -9
  71. package/src/phaser/display/webgl/sprite_batch.js +18 -18
  72. package/src/phaser/display/webgl/stencil_manager.js +16 -16
  73. package/src/phaser/display/webgl/texture.js +13 -13
  74. package/src/phaser/display/webgl/texture_util.js +8 -8
  75. package/src/phaser/display/webgl/util.js +25 -25
  76. package/src/phaser/geom/circle.js +74 -69
  77. package/src/phaser/geom/ellipse.js +33 -28
  78. package/src/phaser/geom/line.js +96 -93
  79. package/src/phaser/geom/matrix.js +61 -54
  80. package/src/phaser/geom/point.js +99 -96
  81. package/src/phaser/geom/polygon.js +27 -22
  82. package/src/phaser/geom/rectangle.js +137 -132
  83. package/src/phaser/geom/rounded_rectangle.js +12 -12
  84. package/src/phaser/geom/util/circle.js +33 -33
  85. package/src/phaser/geom/util/ellipse.js +5 -5
  86. package/src/phaser/geom/util/line.js +26 -26
  87. package/src/phaser/geom/util/matrix.js +8 -8
  88. package/src/phaser/geom/util/point.js +97 -97
  89. package/src/phaser/geom/util/polygon.js +4 -4
  90. package/src/phaser/geom/util/rectangle.js +74 -74
  91. package/src/phaser/geom/util/rounded_rectangle.js +4 -4
  92. package/src/phaser/util/math.js +81 -81
  93. package/types/phaser/core/animation.d.ts +79 -56
  94. package/types/phaser/core/animation.d.ts.map +1 -1
  95. package/types/phaser/core/animation_manager.d.ts +55 -55
  96. package/types/phaser/core/animation_parser.d.ts +3 -2
  97. package/types/phaser/core/animation_parser.d.ts.map +1 -1
  98. package/types/phaser/core/cache.d.ts +154 -154
  99. package/types/phaser/core/device.d.ts.map +1 -1
  100. package/types/phaser/core/dom.d.ts +51 -44
  101. package/types/phaser/core/dom.d.ts.map +1 -1
  102. package/types/phaser/core/event_manager.d.ts +63 -63
  103. package/types/phaser/core/factory.d.ts +47 -47
  104. package/types/phaser/core/frame.d.ts +30 -30
  105. package/types/phaser/core/frame_data.d.ts +28 -27
  106. package/types/phaser/core/frame_data.d.ts.map +1 -1
  107. package/types/phaser/core/game.d.ts +54 -21
  108. package/types/phaser/core/game.d.ts.map +1 -1
  109. package/types/phaser/core/input_pointer.d.ts +18 -0
  110. package/types/phaser/core/input_pointer.d.ts.map +1 -1
  111. package/types/phaser/core/loader.d.ts +175 -172
  112. package/types/phaser/core/loader.d.ts.map +1 -1
  113. package/types/phaser/core/loader_parser.d.ts.map +1 -1
  114. package/types/phaser/core/raf.d.ts +1 -1
  115. package/types/phaser/core/scale_manager.d.ts +6 -5
  116. package/types/phaser/core/scale_manager.d.ts.map +1 -1
  117. package/types/phaser/core/scene.d.ts +15 -9
  118. package/types/phaser/core/scene.d.ts.map +1 -1
  119. package/types/phaser/core/scene_manager.d.ts +51 -43
  120. package/types/phaser/core/scene_manager.d.ts.map +1 -1
  121. package/types/phaser/core/signal.d.ts +54 -51
  122. package/types/phaser/core/signal.d.ts.map +1 -1
  123. package/types/phaser/core/sound.d.ts +54 -54
  124. package/types/phaser/core/sound_manager.d.ts +49 -49
  125. package/types/phaser/core/stage.d.ts +10 -10
  126. package/types/phaser/core/time.d.ts +54 -30
  127. package/types/phaser/core/time.d.ts.map +1 -1
  128. package/types/phaser/core/timer.d.ts +82 -64
  129. package/types/phaser/core/timer.d.ts.map +1 -1
  130. package/types/phaser/core/timer_event.d.ts +9 -9
  131. package/types/phaser/core/tween.d.ts +106 -90
  132. package/types/phaser/core/tween.d.ts.map +1 -1
  133. package/types/phaser/core/tween_data.d.ts +30 -30
  134. package/types/phaser/core/tween_manager.d.ts +35 -67
  135. package/types/phaser/core/tween_manager.d.ts.map +1 -1
  136. package/types/phaser/core/world.d.ts +4 -3
  137. package/types/phaser/core/world.d.ts.map +1 -1
  138. package/types/phaser/display/bitmap_text.d.ts +76 -53
  139. package/types/phaser/display/bitmap_text.d.ts.map +1 -1
  140. package/types/phaser/display/button.d.ts +47 -46
  141. package/types/phaser/display/button.d.ts.map +1 -1
  142. package/types/phaser/display/canvas/buffer.d.ts +8 -8
  143. package/types/phaser/display/canvas/graphics.d.ts +3 -3
  144. package/types/phaser/display/canvas/graphics.d.ts.map +1 -1
  145. package/types/phaser/display/canvas/pool.d.ts +6 -3
  146. package/types/phaser/display/canvas/pool.d.ts.map +1 -1
  147. package/types/phaser/display/canvas/renderer.d.ts +18 -17
  148. package/types/phaser/display/canvas/renderer.d.ts.map +1 -1
  149. package/types/phaser/display/canvas/util.d.ts +6 -6
  150. package/types/phaser/display/canvas/util.d.ts.map +1 -1
  151. package/types/phaser/display/display_object.d.ts +119 -108
  152. package/types/phaser/display/display_object.d.ts.map +1 -1
  153. package/types/phaser/display/graphics.d.ts +118 -102
  154. package/types/phaser/display/graphics.d.ts.map +1 -1
  155. package/types/phaser/display/graphics_data.d.ts +10 -10
  156. package/types/phaser/display/group.d.ts +59 -47
  157. package/types/phaser/display/group.d.ts.map +1 -1
  158. package/types/phaser/display/image.d.ts +58 -45
  159. package/types/phaser/display/image.d.ts.map +1 -1
  160. package/types/phaser/display/text.d.ts +237 -188
  161. package/types/phaser/display/text.d.ts.map +1 -1
  162. package/types/phaser/display/webgl/abstract_filter.d.ts +4 -4
  163. package/types/phaser/display/webgl/base_texture.d.ts +10 -10
  164. package/types/phaser/display/webgl/base_texture.d.ts.map +1 -1
  165. package/types/phaser/display/webgl/blend_manager.d.ts +6 -6
  166. package/types/phaser/display/webgl/earcut.d.ts +95 -95
  167. package/types/phaser/display/webgl/earcut_node.d.ts +4 -4
  168. package/types/phaser/display/webgl/fast_sprite_batch.d.ts +15 -15
  169. package/types/phaser/display/webgl/filter_manager.d.ts +8 -8
  170. package/types/phaser/display/webgl/filter_texture.d.ts +10 -10
  171. package/types/phaser/display/webgl/graphics.d.ts +2 -2
  172. package/types/phaser/display/webgl/graphics.d.ts.map +1 -1
  173. package/types/phaser/display/webgl/graphics_data.d.ts +4 -4
  174. package/types/phaser/display/webgl/render_texture.d.ts +16 -16
  175. package/types/phaser/display/webgl/renderer.d.ts +21 -20
  176. package/types/phaser/display/webgl/renderer.d.ts.map +1 -1
  177. package/types/phaser/display/webgl/shader/complex.d.ts +4 -4
  178. package/types/phaser/display/webgl/shader/fast.d.ts +4 -4
  179. package/types/phaser/display/webgl/shader/normal.d.ts +8 -8
  180. package/types/phaser/display/webgl/shader/primitive.d.ts +4 -4
  181. package/types/phaser/display/webgl/shader/strip.d.ts +4 -4
  182. package/types/phaser/display/webgl/shader_manager.d.ts +8 -8
  183. package/types/phaser/display/webgl/sprite_batch.d.ts +17 -17
  184. package/types/phaser/display/webgl/stencil_manager.d.ts +15 -15
  185. package/types/phaser/display/webgl/texture.d.ts +12 -12
  186. package/types/phaser/display/webgl/texture_util.d.ts +4 -2
  187. package/types/phaser/display/webgl/texture_util.d.ts.map +1 -1
  188. package/types/phaser/geom/circle.d.ts +74 -69
  189. package/types/phaser/geom/circle.d.ts.map +1 -1
  190. package/types/phaser/geom/ellipse.d.ts +33 -28
  191. package/types/phaser/geom/ellipse.d.ts.map +1 -1
  192. package/types/phaser/geom/line.d.ts +96 -93
  193. package/types/phaser/geom/line.d.ts.map +1 -1
  194. package/types/phaser/geom/matrix.d.ts +61 -54
  195. package/types/phaser/geom/matrix.d.ts.map +1 -1
  196. package/types/phaser/geom/point.d.ts +99 -96
  197. package/types/phaser/geom/point.d.ts.map +1 -1
  198. package/types/phaser/geom/polygon.d.ts +29 -23
  199. package/types/phaser/geom/polygon.d.ts.map +1 -1
  200. package/types/phaser/geom/rectangle.d.ts +137 -132
  201. package/types/phaser/geom/rectangle.d.ts.map +1 -1
  202. package/types/phaser/geom/rounded_rectangle.d.ts +12 -12
  203. package/types/phaser/geom/util/point.d.ts +1 -1
  204. package/types/phaser/geom/util/point.d.ts.map +1 -1
  205. package/pnpm-workspace.yaml +0 -4
@@ -1,301 +1,306 @@
1
1
  export class Rectangle {
2
2
  /**
3
- * TBD.
4
- * @param {number} x - TBD.
5
- * @param {number} y - TBD.
6
- * @param {number} width - TBD.
7
- * @param {number} height - TBD.
3
+ * Creates a new Rectangle instance.
4
+ * @param {number} x - The x coordinate of the top-left corner of the rectangle (default: 0).
5
+ * @param {number} y - The y coordinate of the top-left corner of the rectangle (default: 0).
6
+ * @param {number} width - The width of the rectangle (default: 0).
7
+ * @param {number} height - The height of the rectangle (default: 0).
8
8
  */
9
9
  constructor(x?: number, y?: number, width?: number, height?: number);
10
+ /** @type {number} */
10
11
  x: number;
12
+ /** @type {number} */
11
13
  y: number;
14
+ /** @type {number} */
12
15
  width: number;
16
+ /** @type {number} */
13
17
  height: number;
18
+ /** @type {number} */
14
19
  type: number;
15
20
  /**
16
- * TBD.
17
- * @param {number} dx - TBD.
18
- * @param {number} dy - TBD.
19
- * @returns {Rectangle} TBD.
21
+ * Offsets the rectangle's position by the specified amounts.
22
+ * @param {number} dx - The amount to offset the x coordinate by.
23
+ * @param {number} dy - The amount to offset the y coordinate by.
24
+ * @returns {Rectangle} This rectangle instance for chaining.
20
25
  */
21
26
  offset(dx: number, dy: number): Rectangle;
22
27
  /**
23
- * TBD.
24
- * @param {Point} point - TBD.
25
- * @returns {Rectangle} TBD.
28
+ * Offsets the rectangle's position by the specified point coordinates.
29
+ * @param {Point} point - The point to offset the rectangle by.
30
+ * @returns {Rectangle} This rectangle instance for chaining.
26
31
  */
27
32
  offsetPoint(point: Point): Rectangle;
28
33
  /**
29
- * TBD.
30
- * @param {number} x - TBD.
31
- * @param {number} y - TBD.
32
- * @param {number} width - TBD.
33
- * @param {number} height - TBD.
34
- * @returns {Rectangle} TBD.
34
+ * Sets the rectangle's position and size to new values.
35
+ * @param {number} x - The new x coordinate of the top-left corner of the rectangle.
36
+ * @param {number} y - The new y coordinate of the top-left corner of the rectangle.
37
+ * @param {number} width - The new width of the rectangle.
38
+ * @param {number} height - The new height of the rectangle.
39
+ * @returns {Rectangle} This rectangle instance for chaining.
35
40
  */
36
41
  setTo(x: number, y: number, width: number, height: number): Rectangle;
37
42
  /**
38
- * TBD.
39
- * @param {number} x - TBD.
40
- * @param {number} y - TBD.
41
- * @returns {Rectangle} TBD.
43
+ * Scales the rectangle's size by the specified amounts.
44
+ * @param {number} x - The amount to scale the width by.
45
+ * @param {number} y - The amount to scale the height by (default: x).
46
+ * @returns {Rectangle} This rectangle instance for chaining.
42
47
  */
43
48
  scale(x: number, y: number): Rectangle;
44
49
  /**
45
- * TBD.
46
- * @param {number} x - TBD.
47
- * @param {number} y - TBD.
48
- * @returns {Rectangle} TBD.
50
+ * Centers the rectangle on the specified point.
51
+ * @param {number} x - The x coordinate to center the rectangle on.
52
+ * @param {number} y - The y coordinate to center the rectangle on.
53
+ * @returns {Rectangle} This rectangle instance for chaining.
49
54
  */
50
55
  centerOn(x: number, y: number): Rectangle;
51
56
  /**
52
- * TBD.
57
+ * Sets the x coordinate of the center of this rectangle.
53
58
  */
54
59
  set centerX(value: number);
55
60
  /**
56
- * TBD.
57
- * @returns {number} TBD.
61
+ * Gets the x coordinate of the center of this rectangle.
62
+ * @returns {number} The x coordinate of the center of this rectangle.
58
63
  */
59
64
  get centerX(): number;
60
65
  /**
61
- * TBD.
66
+ * Sets the y coordinate of the center of this rectangle.
62
67
  */
63
68
  set centerY(value: number);
64
69
  /**
65
- * TBD.
66
- * @returns {number} TBD.
70
+ * Gets the y coordinate of the center of this rectangle.
71
+ * @returns {number} The y coordinate of the center of this rectangle.
67
72
  */
68
73
  get centerY(): number;
69
74
  /**
70
- * TBD.
75
+ * Floors the x and y coordinates of the rectangle (rounds down to nearest integer).
71
76
  */
72
77
  floor(): void;
73
78
  /**
74
- * TBD.
79
+ * Floors all coordinates of the rectangle (rounds down to nearest integer).
75
80
  */
76
81
  floorAll(): void;
77
82
  /**
78
- * TBD.
83
+ * Ceils the x and y coordinates of the rectangle (rounds up to nearest integer).
79
84
  */
80
85
  ceil(): void;
81
86
  /**
82
- * TBD.
87
+ * Ceils all coordinates of the rectangle (rounds up to nearest integer).
83
88
  */
84
89
  ceilAll(): void;
85
90
  /**
86
- * TBD.
87
- * @param {Rectangle} source - TBD.
88
- * @returns {Rectangle} TBD.
91
+ * Copies the values from another rectangle to this rectangle.
92
+ * @param {Rectangle} source - The rectangle to copy values from.
93
+ * @returns {Rectangle} This rectangle instance for chaining.
89
94
  */
90
95
  copyFrom(source: Rectangle): Rectangle;
91
96
  /**
92
- * TBD.
93
- * @param {Rectangle} dest - TBD.
94
- * @returns {Rectangle} TBD.
97
+ * Copies the values of this rectangle to another rectangle.
98
+ * @param {Rectangle} dest - The rectangle to copy values to.
99
+ * @returns {Rectangle} The destination rectangle.
95
100
  */
96
101
  copyTo(dest: Rectangle): Rectangle;
97
102
  /**
98
- * TBD.
99
- * @param {number} dx - TBD.
100
- * @param {number} dy - TBD.
101
- * @returns {Rectangle} TBD.
103
+ * Increases the size of the rectangle by the specified amounts.
104
+ * @param {number} dx - The amount to increase the width by.
105
+ * @param {number} dy - The amount to increase the height by.
106
+ * @returns {Rectangle} This rectangle instance for chaining.
102
107
  */
103
108
  inflate(dx: number, dy: number): Rectangle;
104
109
  /**
105
- * TBD.
106
- * @param {Point} output - TBD.
107
- * @returns {Point} TBD.
110
+ * Gets the size of the rectangle as a point.
111
+ * @param {Point} output - The point to store the size in (optional).
112
+ * @returns {Point} The size of the rectangle as a point.
108
113
  */
109
114
  size(output: Point): Point;
110
115
  /**
111
- * TBD.
112
- * @param {number} width - TBD.
113
- * @param {number} height - TBD.
114
- * @returns {Rectangle} TBD.
116
+ * Resizes the rectangle to the specified dimensions.
117
+ * @param {number} width - The new width of the rectangle.
118
+ * @param {number} height - The new height of the rectangle.
119
+ * @returns {Rectangle} This rectangle instance for chaining.
115
120
  */
116
121
  resize(width: number, height: number): Rectangle;
117
122
  /**
118
- * TBD.
119
- * @param {Rectangle} output - TBD.
120
- * @returns {Rectangle} TBD.
123
+ * Creates a clone of this rectangle.
124
+ * @param {Rectangle} output - The rectangle to store the clone in (optional).
125
+ * @returns {Rectangle} A new rectangle with the same values as this one.
121
126
  */
122
127
  clone(output: Rectangle): Rectangle;
123
128
  /**
124
- * TBD.
125
- * @param {number} x - TBD.
126
- * @param {number} y - TBD.
127
- * @returns {boolean} TBD.
129
+ * Checks if the specified point is contained within this rectangle.
130
+ * @param {number} x - The x coordinate of the point to check.
131
+ * @param {number} y - The y coordinate of the point to check.
132
+ * @returns {boolean} True if the point is contained within this rectangle, false otherwise.
128
133
  */
129
134
  contains(x: number, y: number): boolean;
130
135
  /**
131
- * TBD.
132
- * @param {Rectangle} b - TBD.
133
- * @returns {boolean} TBD.
136
+ * Checks if the specified rectangle is fully contained within this rectangle.
137
+ * @param {Rectangle} b - The rectangle to check if it's contained.
138
+ * @returns {boolean} True if the rectangle is contained within this rectangle, false otherwise.
134
139
  */
135
140
  containsRect(b: Rectangle): boolean;
136
141
  /**
137
- * TBD.
138
- * @param {Rectangle} b - TBD.
139
- * @returns {boolean} TBD.
142
+ * Checks if this rectangle is equal to another rectangle.
143
+ * @param {Rectangle} b - The rectangle to compare with.
144
+ * @returns {boolean} True if the rectangles have the same values, false otherwise.
140
145
  */
141
146
  equals(b: Rectangle): boolean;
142
147
  /**
143
- * TBD.
144
- * @param {Rectangle} b - TBD.
145
- * @param {Rectangle} out - TBD.
146
- * @returns {Rectangle} TBD.
148
+ * Gets the intersection of this rectangle and another rectangle.
149
+ * @param {Rectangle} b - The rectangle to intersect with.
150
+ * @param {Rectangle} out - The rectangle to store the result in (optional).
151
+ * @returns {Rectangle} The intersection of the two rectangles.
147
152
  */
148
153
  intersection(b: Rectangle, out: Rectangle): Rectangle;
149
154
  /**
150
- * TBD.
151
- * @param {Rectangle} b - TBD.
152
- * @returns {boolean} TBD.
155
+ * Checks if this rectangle intersects with another rectangle.
156
+ * @param {Rectangle} b - The rectangle to check for intersection with.
157
+ * @returns {boolean} True if the rectangles intersect, false otherwise.
153
158
  */
154
159
  intersects(b: Rectangle): boolean;
155
160
  /**
156
- * TBD.
157
- * @param {number} left - TBD.
158
- * @param {number} right - TBD.
159
- * @param {number} top - TBD.
160
- * @param {number} bottom - TBD.
161
- * @param {number} tolerance - TBD.
162
- * @returns {boolean} TBD.
161
+ * Checks if this rectangle intersects with the specified bounds.
162
+ * @param {number} left - The left boundary of the area to check for intersection.
163
+ * @param {number} right - The right boundary of the area to check for intersection.
164
+ * @param {number} top - The top boundary of the area to check for intersection.
165
+ * @param {number} bottom - The bottom boundary of the area to check for intersection.
166
+ * @param {number} tolerance - A tolerance value to use when checking (default: 0).
167
+ * @returns {boolean} True if the rectangle intersects with the bounds, false otherwise.
163
168
  */
164
169
  intersectsRaw(left: number, right: number, top: number, bottom: number, tolerance: number): boolean;
165
170
  /**
166
- * TBD.
167
- * @param {Rectangle} b - TBD.
168
- * @param {Rectangle} out - TBD.
169
- * @returns {Rectangle} TBD.
171
+ * Gets the union of this rectangle and another rectangle.
172
+ * @param {Rectangle} b - The rectangle to union with.
173
+ * @param {Rectangle} out - The rectangle to store the result in (optional).
174
+ * @returns {Rectangle} The union of the two rectangles.
170
175
  */
171
176
  union(b: Rectangle, out: Rectangle): Rectangle;
172
177
  /**
173
- * TBD.
174
- * @param {Point} output - TBD.
175
- * @returns {Point} TBD.
178
+ * Gets a random point within this rectangle.
179
+ * @param {Point} output - The point to store the result in (optional).
180
+ * @returns {Point} A random point within this rectangle.
176
181
  */
177
182
  random(output?: Point): Point;
178
183
  /**
179
- * TBD.
180
- * @param {number} position - TBD.
181
- * @param {Point} output - TBD.
182
- * @returns {Point} TBD.
184
+ * Gets a point at a specific position on the rectangle.
185
+ * @param {number} position - The position to get the point for (TOP_LEFT, TOP_CENTER, etc.).
186
+ * @param {Point} output - The point to store the result in (optional).
187
+ * @returns {Point} A point at the specified position on the rectangle.
183
188
  */
184
189
  getPoint(position: number, output?: Point): Point;
185
190
  /**
186
- * TBD.
187
- * @returns {string} TBD.
191
+ * Returns a string representation of this rectangle.
192
+ * @returns {string} A string representation of the rectangle.
188
193
  */
189
194
  toString(): string;
190
195
  /**
191
- * TBD.
192
- * @returns {number} TBD.
196
+ * Gets half the width of this rectangle.
197
+ * @returns {number} Half the width of this rectangle.
193
198
  */
194
199
  get halfWidth(): number;
195
200
  /**
196
- * TBD.
197
- * @returns {number} TBD.
201
+ * Gets half the height of this rectangle.
202
+ * @returns {number} Half the height of this rectangle.
198
203
  */
199
204
  get halfHeight(): number;
200
205
  /**
201
- * TBD.
206
+ * Sets the top coordinate of this rectangle.
202
207
  */
203
208
  set top(value: number);
204
209
  /**
205
- * TBD.
206
- * @returns {number} TBD.
210
+ * Gets the top coordinate of this rectangle.
211
+ * @returns {number} The top coordinate of this rectangle.
207
212
  */
208
213
  get top(): number;
209
214
  /**
210
- * TBD.
215
+ * Sets the top-left point of this rectangle.
211
216
  */
212
217
  set topLeft(value: Point);
213
218
  /**
214
- * TBD.
215
- * @returns {Point} TBD.
219
+ * Gets the top-left point of this rectangle.
220
+ * @returns {Point} The top-left point of this rectangle.
216
221
  */
217
222
  get topLeft(): Point;
218
223
  /**
219
- * TBD.
224
+ * Sets the top-right point of this rectangle.
220
225
  */
221
226
  set topRight(value: Point);
222
227
  /**
223
- * TBD.
224
- * @returns {Point} TBD.
228
+ * Gets the top-right point of this rectangle.
229
+ * @returns {Point} The top-right point of this rectangle.
225
230
  */
226
231
  get topRight(): Point;
227
232
  /**
228
- * TBD.
233
+ * Sets the right coordinate of this rectangle.
229
234
  */
230
235
  set right(value: number);
231
236
  /**
232
- * TBD.
233
- * @returns {number} TBD.
237
+ * Gets the right coordinate of this rectangle.
238
+ * @returns {number} The right coordinate of this rectangle.
234
239
  */
235
240
  get right(): number;
236
241
  /**
237
- * TBD.
242
+ * Sets the bottom coordinate of this rectangle.
238
243
  */
239
244
  set bottom(value: number);
240
245
  /**
241
- * TBD.
242
- * @returns {number} TBD.
246
+ * Gets the bottom coordinate of this rectangle.
247
+ * @returns {number} The bottom coordinate of this rectangle.
243
248
  */
244
249
  get bottom(): number;
245
250
  /**
246
- * TBD.
251
+ * Sets the bottom-left point of this rectangle.
247
252
  */
248
253
  set bottomLeft(value: Point);
249
254
  /**
250
- * TBD.
251
- * @returns {Point} TBD.
255
+ * Gets the bottom-left point of this rectangle.
256
+ * @returns {Point} The bottom-left point of this rectangle.
252
257
  */
253
258
  get bottomLeft(): Point;
254
259
  /**
255
- * TBD.
260
+ * Sets the bottom-right point of this rectangle.
256
261
  */
257
262
  set bottomRight(value: Point);
258
263
  /**
259
- * TBD.
260
- * @returns {Point} TBD.
264
+ * Gets the bottom-right point of this rectangle.
265
+ * @returns {Point} The bottom-right point of this rectangle.
261
266
  */
262
267
  get bottomRight(): Point;
263
268
  /**
264
- * TBD.
269
+ * Sets the left coordinate of this rectangle.
265
270
  */
266
271
  set left(value: number);
267
272
  /**
268
- * TBD.
269
- * @returns {number} TBD.
273
+ * Gets the left coordinate of this rectangle.
274
+ * @returns {number} The left coordinate of this rectangle.
270
275
  */
271
276
  get left(): number;
272
277
  /**
273
- * TBD.
274
- * @returns {number} TBD.
278
+ * Gets the volume (area) of this rectangle.
279
+ * @returns {number} The volume (area) of this rectangle.
275
280
  */
276
281
  get volume(): number;
277
282
  /**
278
- * TBD.
279
- * @returns {number} TBD.
283
+ * Gets the perimeter of this rectangle.
284
+ * @returns {number} The perimeter of this rectangle.
280
285
  */
281
286
  get perimeter(): number;
282
287
  /**
283
- * TBD.
284
- * @returns {number} TBD.
288
+ * Gets a random x coordinate within this rectangle.
289
+ * @returns {number} A random x coordinate within this rectangle.
285
290
  */
286
291
  get randomX(): number;
287
292
  /**
288
- * TBD.
289
- * @returns {number} TBD.
293
+ * Gets a random y coordinate within this rectangle.
294
+ * @returns {number} A random y coordinate within this rectangle.
290
295
  */
291
296
  get randomY(): number;
292
297
  /**
293
- * TBD.
298
+ * Sets whether this rectangle is empty (zero width or height).
294
299
  */
295
300
  set empty(value: boolean);
296
301
  /**
297
- * TBD.
298
- * @returns {boolean} TBD.
302
+ * Checks if this rectangle is empty (has zero width or height).
303
+ * @returns {boolean} True if the rectangle is empty, false otherwise.
299
304
  */
300
305
  get empty(): boolean;
301
306
  }
@@ -1 +1 @@
1
- {"version":3,"file":"rectangle.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/rectangle.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"rectangle.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/rectangle.js"],"names":[],"mappings":"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"}
@@ -1,11 +1,11 @@
1
1
  export class RoundedRectangle {
2
2
  /**
3
- * TBD.
4
- * @param {number} x - TBD.
5
- * @param {number} y - TBD.
6
- * @param {number} width - TBD.
7
- * @param {number} height - TBD.
8
- * @param {number} radius - TBD.
3
+ * Creates a new RoundedRectangle instance.
4
+ * @param {number} x - The x coordinate of the top-left corner of the rectangle (default: 0).
5
+ * @param {number} y - The y coordinate of the top-left corner of the rectangle (default: 0).
6
+ * @param {number} width - The width of the rectangle (default: 0).
7
+ * @param {number} height - The height of the rectangle (default: 0).
8
+ * @param {number} radius - The corner radius (default: 20).
9
9
  */
10
10
  constructor(x?: number, y?: number, width?: number, height?: number, radius?: number);
11
11
  x: number;
@@ -15,15 +15,15 @@ export class RoundedRectangle {
15
15
  radius: number;
16
16
  type: number;
17
17
  /**
18
- * TBD.
19
- * @param {number} x - TBD.
20
- * @param {number} y - TBD.
21
- * @returns {boolean} TBD.
18
+ * Checks if the specified point is contained within this rounded rectangle.
19
+ * @param {number} x - The x coordinate of the point to check.
20
+ * @param {number} y - The y coordinate of the point to check.
21
+ * @returns {boolean} True if the point is contained within this rounded rectangle, false otherwise.
22
22
  */
23
23
  contains(x: number, y: number): boolean;
24
24
  /**
25
- * TBD.
26
- * @returns {RoundedRectangle} TBD.
25
+ * Creates a clone of this rounded rectangle.
26
+ * @returns {RoundedRectangle} A new rounded rectangle with the same values as this one.
27
27
  */
28
28
  clone(): RoundedRectangle;
29
29
  }
@@ -14,7 +14,7 @@ export function project(a: Point, b: Point, output?: Point): Point;
14
14
  export function projectUnit(a: Point, b: Point, output?: Point): Point;
15
15
  export function normalRightHand(a: Point, output?: Point): Point;
16
16
  export function normalize(a: Point, output?: Point): Point;
17
- export function rotate(a: Point, x: number, y: number, ang: number, asDegrees: boolean, dist: number | null | undefined): object;
17
+ export function rotate(a: Point, x: number, y: number, ang: number, asDegrees: boolean, dist: number | null | undefined): Point;
18
18
  export function centroid(points: Point[], output?: Point): Point;
19
19
  export function parse(obj: object, xProp?: string, yProp?: string): Point;
20
20
  export function clone(input: Point, output?: Point): Point;
@@ -1 +1 @@
1
- {"version":3,"file":"point.d.ts","sourceRoot":"","sources":["../../../../src/phaser/geom/util/point.js"],"names":[],"mappings":"AASO,uBALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AASM,4BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AASM,4BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AASM,0BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AAQM,0BAJI,KAAK,KACL,KAAK,GACH,OAAO,CAInB;AAQM,yBAJI,KAAK,KACL,KAAK,GACH,MAAM,CAIlB;AAQM,4BAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AAUM,+BANI,KAAK,KACL,KAAK,KACL,MAAM,WACN,KAAK,GACH,KAAK,CAKjB;AAUM,+BANI,KAAK,KACL,KAAK,KACL,MAAM,WACN,KAAK,GACH,KAAK,CAKjB;AAQM,wBAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AAQM,yBAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AASM,4BALI,KAAK,KACL,KAAK,UACL,OAAO,GACL,MAAM,CAOlB;AASM,2BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CASjB;AASM,+BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CASjB;AAQM,mCAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AAQM,6BAJI,KAAK,WACL,KAAK,GACH,KAAK,CASjB;AAYM,0BARI,KAAK,KACL,MAAM,KACN,MAAM,OACN,MAAM,aACN,OAAO,QACP,MAAM,GAAG,IAAI,GAAG,SAAS,GACvB,MAAM,CAoBlB;AASM,iCALI,KAAK,EAAE,WACP,KAAK,GACH,KAAK,CAkBjB;AASM,2BALI,MAAM,UACN,MAAM,UACN,MAAM,GACJ,KAAK,CAWjB;AAQM,6BAJI,KAAK,WACL,KAAK,GACH,KAAK,CAMjB;sBAnSqB,aAAa"}
1
+ {"version":3,"file":"point.d.ts","sourceRoot":"","sources":["../../../../src/phaser/geom/util/point.js"],"names":[],"mappings":"AASO,uBALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AASM,4BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AASM,4BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AASM,0BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CAOjB;AAQM,0BAJI,KAAK,KACL,KAAK,GACH,OAAO,CAInB;AAQM,yBAJI,KAAK,KACL,KAAK,GACH,MAAM,CAIlB;AAQM,4BAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AAUM,+BANI,KAAK,KACL,KAAK,KACL,MAAM,WACN,KAAK,GACH,KAAK,CAKjB;AAUM,+BANI,KAAK,KACL,KAAK,KACL,MAAM,WACN,KAAK,GACH,KAAK,CAKjB;AAQM,wBAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AAQM,yBAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AASM,4BALI,KAAK,KACL,KAAK,UACL,OAAO,GACL,MAAM,CAOlB;AASM,2BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CASjB;AASM,+BALI,KAAK,KACL,KAAK,WACL,KAAK,GACH,KAAK,CASjB;AAQM,mCAJI,KAAK,WACL,KAAK,GACH,KAAK,CAKjB;AAQM,6BAJI,KAAK,WACL,KAAK,GACH,KAAK,CASjB;AAYM,0BARI,KAAK,KACL,MAAM,KACN,MAAM,OACN,MAAM,aACN,OAAO,QACP,MAAM,GAAG,IAAI,GAAG,SAAS,GACvB,KAAK,CAoBjB;AASM,iCALI,KAAK,EAAE,WACP,KAAK,GACH,KAAK,CAkBjB;AASM,2BALI,MAAM,UACN,MAAM,UACN,MAAM,GACJ,KAAK,CAWjB;AAQM,6BAJI,KAAK,WACL,KAAK,GACH,KAAK,CAMjB;sBAnSqB,aAAa"}
@@ -1,4 +0,0 @@
1
- onlyBuiltDependencies:
2
- - esbuild
3
- trustPolicy: no-downgrade
4
- minimumReleaseAge: 4320