From d604a0d55746a15f40615b7a344b20416c74249a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=9E=AB?= <51731411+Fengjing95@users.noreply.github.com> Date: Sun, 18 Aug 2024 17:58:38 +0800 Subject: [PATCH] fix: Fixed description of math function (#817) * fix: Fixed description of math.sqrt function * fix: fix math.asin description * Update lua.md --- docs/lua.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/lua.md b/docs/lua.md index b224734a41f..1af5d6e3b80 100644 --- a/docs/lua.md +++ b/docs/lua.md @@ -652,7 +652,7 @@ local g = math.max(1, 2, 3) -- 3 local h = math.min(1, 2, 3) -- 1 -- 返回参数的平方根 -local r = math.sqrt(3) -- 9 +local r = math.sqrt(9) -- 3 ``` ### 工具方法 @@ -701,10 +701,10 @@ math.cos(math.pi) -- -1.0 math.tan(math.pi / 4) -- 1.0 -- 反正弦方法(以下皆是以弧度表示) -math.acos(1.0) -- 0.0 +math.asin(1.0) -- 1.5707963267949 -- 反余弦方法 -math.acos(1.0) -- 1.5707963267949 --- 反正弦方法 +math.acos(1.0) -- 0.0 +-- 反正切方法 math.atan(1.0) -- 0.78539816339745 -- 角度转换为弧度