-
Notifications
You must be signed in to change notification settings - Fork 9
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
Владислав Садыров #7
base: master
Are you sure you want to change the base?
Conversation
Снежинка Коха
SK.js
Outdated
context.fillRect(0, 0, 0, 0); | ||
addEventListener("keydown", function(event) { | ||
if (event.code == "Enter"){ | ||
i=3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тебе не нужны глобальные переменные i, k, раз ты их в начале обработчика перетираешь. На самом деле глобальных переменных вообще следует избегать.
SK.js
Outdated
context.clearRect(200, -2,-1000, 900); | ||
context.fillRect(0, 0, 0, 0); | ||
context.fillStyle = "red"; | ||
while((i--)>0){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Выделить этот цикл в отдельную функцию - правильная идея. Так ты отделишь хитрую логику обработки ошибок в пользовательском вводе от алгоритма. Читабельность повысится, возможность повторного использования кода (алгоритма) тоже. Да, здесь негде переиспользовать, но хорошие привычки надо вырабатывать
SK.js
Outdated
function inRad(num) { | ||
return num * Math.PI / 180; | ||
} | ||
function Coha(n, k){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Названия функций должны быть глаголами
Исправленный
Снежинка Коха