This page, on Region3's, confuses me before the third sentence. It shows the following code. Pay special attention to the comment.
Region3.new( Vector3.new(1, 1, 1), Vector3.new(9, 9, 9) ) -- a Region3 with a size of (8, 8, 8) and a position at (5, 5, 5)
Why would it have a size of 888 and a position at 555? Shouldn't it be 111 and 999? This makes no sense, and the wiki doesn't explain.
More info on Region3 itself would also be greatly appreciated, as I didn't find that article very well written or clear.
Golden is correct.
The two parameters are not the Size and Position of the Region3, but rather the lower and upper corners of it.
9 - 1 == 8
, and 8/2 == 4
, 1 + 4 == 5
, ergo: its position is 5, 5, 5 with a size of 8, 8, 8.
What specifically about that article did you have trouble understanding? The paragraph directly after that code block explains that you're defining the lower and upper corners of the Region3.