Make max and min functions clearer

This commit is contained in:
ffrostfall 2024-05-13 18:28:57 -04:00 committed by GitHub
parent 4c0c3ce64a
commit 9966eae9e5
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -54,11 +54,11 @@ Returns the angle between two vectors.
`vector.max(input: vector, maximum: vector): vector`
Equivalent of `math.max` for vectors.
Equivalent of: `vector(math.max(a.x, b.x), etc)`
`vector.min(input: vector, minimum: vector): vector`
Equivalent of `math.min` for vectors.
Equivalent of: `vector(math.min(a.x, b.x), etc)`
---