From 946af7bc12790d860b83c74ece945936f319ae3c Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostflame@users.noreply.github.com> Date: Mon, 13 May 2024 18:29:58 -0400 Subject: [PATCH] Clarify min and max functions --- docs/vector-library.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/vector-library.md b/docs/vector-library.md index 27ab68e..fd80e72 100644 --- a/docs/vector-library.md +++ b/docs/vector-library.md @@ -54,11 +54,11 @@ Returns the angle between two vectors. `vector.max(input: vector, maximum: vector): vector` -Equivalent of: `vector(math.max(a.x, b.x), etc)` +Applies math.max component-wise for each vector. Equivalent of: `vector(math.max(a.x, b.x), etc)` `vector.min(input: vector, minimum: vector): vector` -Equivalent of: `vector(math.min(a.x, b.x), etc)` +Same as `vector.max`. Equivalent of: `vector(math.min(a.x, b.x), etc)` ---