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

Владислав Садыров #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

SVladislav
Copy link

Снежинка Коха

Снежинка Коха
SK.js Outdated
context.fillRect(0, 0, 0, 0);
addEventListener("keydown", function(event) {
if (event.code == "Enter"){
i=3;
Copy link

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){
Copy link

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){
Copy link

Choose a reason for hiding this comment

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

Названия функций должны быть глаголами

Исправленный
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