Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

docs: fix typo in math module #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
luckrnx09 merged 1 commit into main from fix-typo-in-math-module
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/math-module.md
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ print(area)
| Round to Nearest Integer | `Math.round(x)` | `round(x)` |
| Ceiling (Smallest Integer Not Less Than x) | `Math.ceil(x)` | `math.ceil(x)` |
| Floor (Largest Integer Not Greater Than x) | `Math.floor(x)` | `math.floor(x)` |
| Exponential Operation | `Math.pow(x, y)` | `pow(x, y)` |
| Exponential Operation | `Math.pow(x, y)` | `math.pow(x, y)` |
| Square Root | `Math.sqrt(x)` | `math.sqrt(x)` |
| Trigonometric Functions | `Math.sin(x)`、`Math.cos(x)`、`Math.tan(x)`、`Math.asin(x)`、`Math.acos(x)`、`Math.atan(x)` | `math.sin(x)`、`math.cos(x)`、`math.tan(x)`、`math.asin(x)`、`math.acos(x)`、`math.atan(x)` |
| Convert Degrees to Radians | - | `math.radians(x)` |
Expand Down
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ print(area)
| 四舍五入到最近的整数 | `Math.round(x)` | `round(x)` |
| 向上取整(不小于x的最小整数) | `Math.ceil(x)` | `math.ceil(x)` |
| 向下取整(不大于x的最大整数) | `Math.floor(x)` | `math.floor(x)` |
| 指数运算 | `Math.pow(x, y)` | `pow(x, y)` |
| 指数运算 | `Math.pow(x, y)` | `math.pow(x, y)` |
| 平方根 | `Math.sqrt(x)` | `math.sqrt(x)` |
| 三角函数 | `Math.sin(x)`、`Math.cos(x)`、`Math.tan(x)`、`Math.asin(x)`、`Math.acos(x)`、`Math.atan(x)` | `math.sin(x)`、`math.cos(x)`、`math.tan(x)`、`math.asin(x)`、`math.acos(x)`、`math.atan(x)` |
| 将角度转换为弧度 | - | `math.radians(x)` |
Expand Down

AltStyle によって変換されたページ (->オリジナル) /