From 9966eae9e5cff83ebf7780ab91260a943e2a1e9e Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostflame@users.noreply.github.com> Date: Mon, 13 May 2024 18:28:57 -0400 Subject: [PATCH] Make max and min functions clearer --- 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 a5c4d3d..27ab68e 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 `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)` ---