Get "min" and "max" Vector3 Values from a Region3 Object?
Asked by
5 years ago Edited 5 years ago
How would you go about getting the min
and max
Vector3 values from the existing properties of a Region3 data-type value?
So, I've recently stumbled across this question. We can create Region3 objects by passing a min
Vector3 object and a max
Vector3 objects to Region3.new() which represent the position of the two corners opposite of each other of the Region3 object that is being created.
Only constructor of Region3:
Region3.new(Vector3 min, Vector3 max)
However, a Region3 data-type object only contains the properties CFrame
and size
, where size
is represented as a Vector3 object. So I thought that maybe by using the position of the Region's center given in the CFrame and the size property given we would be able to find two opposite corners of the Region3 (the min
and max
Vector3 values)???
1 | local region = Region 3. new(Vector 3. new( 0 , 0 , - 3 ), Vector 3. new( 4 , 4 , 4 )) |
3 | region = region:ExpandToGrid(res) |
5 | local terrain = game:WaitForChild( "Terrain" ) |
6 | terrain:FillRegion(region, 4 , Enum.Material.Water) |
^ To further elaborate, if we take that code from https://developer.roblox.com/en-us/api-reference/datatype/Region3, is there a way to get the min
Vector3 value, Vector3.new(0, 0, -3)
and the max
Vector3 value, Vector3.new(4, 4, 4)
, back from the information we have within the region
Region3 object?
I thought there would be some way to do this with math, but I am absolutely terrible with math. If anyone has like an equation or something for this, do you think you could explain the way it works to me so I can understand? I've tried researching this question, but I've found basically nothing helpful. :/
Thank you in advance! :)