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

Сделал работу Снежинка Коха. Макушев Артемий #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

banancheg
Copy link

No description provided.

//получаем html-элемент типа canvas и его характеристики
var canvas = document.getElementById("canvas1");
/*============================================================================================*/
function PaintSnowflake(){
Copy link

Choose a reason for hiding this comment

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

JS != C#. В JS всегда работает camelCase. Исключения мы разобрали - название конструкторов и именование констант.

function example1() {
//получаем html-элемент типа canvas и его характеристики
var canvas = document.getElementById("canvas1");
/*============================================================================================*/
Copy link

Choose a reason for hiding this comment

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

Такие комментарии делать не нужно. Сразу после тэга скрипт нет смысла. В остальных частях кода: либо пустые строчки, либо код в функции, либо разные файлы.

<canvas height='200' width='200' id='canvas3'></canvas>
</body>
context.strokeStyle = "black";
var points = [{x: 100, y: 200}, {x: 600, y: 200}, {x: 0, y: 0}];
Copy link

Choose a reason for hiding this comment

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

Ты чуть далее так часто обращаешься к точкам points[0] и points[1]. Что стоило бы сделать

var point1 = ...
var point2 = ...
var point3 = ...
var points = [point1, point2, point3];

Тем более, что point3 ты сейчас считаешь после создания массива

}
/*============================================================================================*/
//firstPoint - первая точка отрезка
//secondPoint - вторая точка отрезка
Copy link

Choose a reason for hiding this comment

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

Google Translate подсказывает: firstPoint - Первая точка
Оставь ему эту работу :-)

Чуть глубже: старайся выразить смысл через название переменных и методов. И только в крайних случаях пиши комментарии.
Крайние случае - это:

  • ты делаешь костыль и пишешь зачем
  • ты делаешь комментарии и публичному API своего сервиса или библиотеки.

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