@quenty/region3utils 10.9.0 → 10.9.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.9.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/region3utils@10.9.0...@quenty/region3utils@10.9.1) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [10.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/region3utils@10.8.0...@quenty/region3utils@10.9.0) (2025-02-18)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/region3utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/region3utils",
3
- "version": "10.9.0",
3
+ "version": "10.9.1",
4
4
  "description": "Utility methods for Region3",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/boundingboxutils": "^4.3.0",
29
- "@quenty/loader": "^10.8.0"
28
+ "@quenty/boundingboxutils": "^4.3.1",
29
+ "@quenty/loader": "^10.8.1"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "184a407d8d7366c39009444c3c9a7023cb176471"
34
+ "gitHead": "78c3ac0ab08dd18085b6e6e6e4f745e76ed99f68"
35
35
  }
@@ -1,3 +1,4 @@
1
+ --!strict
1
2
  --[=[
2
3
  Utility methods for Region3
3
4
  @class Region3Utils
@@ -9,16 +10,16 @@ local BoundingBoxUtils = require("BoundingBoxUtils")
9
10
 
10
11
  local Region3Utils = {}
11
12
 
12
- function Region3Utils.fromPositionSize(position, size)
13
- local halfSize = size/2
13
+ function Region3Utils.fromPositionSize(position: Vector3, size: Vector3): Region3
14
+ local halfSize = size / 2
14
15
  return Region3.new(position - halfSize, position + halfSize)
15
16
  end
16
17
 
17
- function Region3Utils.fromBox(cframe, size)
18
+ function Region3Utils.fromBox(cframe: CFrame, size: Vector3): Region3
18
19
  return Region3Utils.fromPositionSize(cframe.Position, BoundingBoxUtils.axisAlignedBoxSize(cframe, size))
19
20
  end
20
21
 
21
- function Region3Utils.fromRadius(position, radius)
22
+ function Region3Utils.fromRadius(position: Vector3, radius: number): Region3
22
23
  local diameterPadded = 2*radius
23
24
  local size = Vector3.new(diameterPadded, diameterPadded, diameterPadded)
24
25
  return Region3Utils.fromPositionSize(position, size)