The Vector3 and Vector2 pages don’t mention the Min/Max methods.
-- Vector3:Max(Vector3...) -> Vector3
print(Vector3.new(1,2,3):Max(Vector3.new(3,2,1))) --> 3, 2, 3
-- Vector3:Min(Vector3...) -> Vector3
print(Vector3.new(1,2,3):Min(Vector3.new(3,2,1))) --> 1, 2, 1
-- Vector2:Max(Vector2...) -> Vector2
print(Vector2.new(1,2):Max(Vector2.new(2,1))) --> 2, 2
-- Vector2:Min(Vector2...) -> Vector2
print(Vector2.new(1,2):Min(Vector2.new(2,1))) --> 1, 1
-- Using several vectors:
print(Vector3.new(1,-1,-1):Max(Vector3.new(-1,1,-1),Vector3.new(-1,-1,1)))
24 Likes
Several months later and I don’t see these added, any chance they will be added?
5 Likes
Quenty
(Quenty)
#3
These are still missing! What’s the chance we can get them added?
4 Likes
Cozecant
(cozecant)
#4
Thanks for your report! We’ve triaged the issue and will follow up when it has been resolved.
3 Likes
Cozecant
(cozecant)
#5
These have been added! If you don’t see them yet, please allow some time for the changes to propagate.
3 Likes
Cozecant
(cozecant)
Closed
#6
This topic was automatically closed after 20 hours. New replies are no longer allowed.