Skip to content
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

Add new extensions #417

Merged
merged 6 commits into from
Dec 21, 2024
Merged

Add new extensions #417

merged 6 commits into from
Dec 21, 2024

Conversation

Xertis
Copy link
Contributor

@Xertis Xertis commented Dec 20, 2024

Добавлены:

table.shuffle(t: table) -> table

Перемешивает значения в таблице.

math.normalize(num: number, [опционально] conf: num) -> number

Возвращает нормализованное значение num относительно conf.

math.round(num: number, [опционально] places: num) -> number

Возвращает округлённое число до указанного количества знаков после запятой places.

@@ -51,6 +51,19 @@ function math.rand(low, high)
return low + (high - low) * math.random()
end

function math.normalize(num, conf)
conf = conf or 10
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Почему именно 10, а не 1?

Copy link
Contributor Author

@Xertis Xertis Dec 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Почему именно 10, а не 1?

Потому что тогда любое целое число будет возвращать 0, посчитал, что так будет хуже, ведь оно будет просто откидывать целую часть по сути (а это кстати уже похоже на реализацию %)

Copy link
Owner

@MihailRis MihailRis Dec 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Под этот ответ подойдёт и 16, и 100.
По названию, от normalize, по аналогии с векторами, логичнее ожидать 1, так как использоваться функция потенциально чаще будет с дробными. В иных же случаях, следует явно передавать значение conf.

@MihailRis MihailRis merged commit da484da into MihailRis:main Dec 21, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants