From 26376936dd279f4e1389cd772ca9132d123c9ed5 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Thu, 29 Aug 2024 14:46:15 -0400 Subject: [PATCH] Removing duplicate documentation Signed-off-by: Matt Farina --- docs/mathf.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/docs/mathf.md b/docs/mathf.md index 69b2e1a0..759c8525 100644 --- a/docs/mathf.md +++ b/docs/mathf.md @@ -65,21 +65,3 @@ This will return `1.5`: ``` minf 1.5 2 3 ``` - -## floor - -Returns the greatest float value less than or equal to input value - -`floor 123.9999` will return `123.0` - -## ceil - -Returns the greatest float value greater than or equal to input value - -`ceil 123.001` will return `124.0` - -## round - -Returns a float value with the remainder rounded to the given number to digits after the decimal point. - -`round 123.555555` will return `123.556`