Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <canvas id="drawing" width="600" height="600">Canvas not supported.</canvas>
<label>Шероховатость </label>
<input type="range" id="roughness" min="0" max="0.5" step="0.01">
<br>
<input type="button" onclick="landscapeGenerator()" value="Сгенерировать новый ландшафт" />
              
            
!

CSS

              
                #drawing {
  border: 1px solid #000;
  background: #ffe;
  display: block;
  margin: 0 auto;
}
input {
  position: relative;
  top: -420px;
}
label {
  position: relative;
  top: -420px;
}

              
            
!

JS

              
                class point {
  // Класс для хранения координат
  constructor(x, y) {
    this.x = x;
    this.y = y;
  }
}
// Функция для изменения пикселя в ImageData
function pixel(x, y, color) {
  image.data[(x + y * obj.width) * 4] = color;
  image.data[(x + y * obj.width) * 4 + 1] = color;
  image.data[(x + y * obj.width) * 4 + 2] = color;
  image.data[(x + y * obj.width) * 4 + 3] = 255;
}
// Переменные для хранения слайдера и его значения
var slider = document.getElementById("roughness");
var r = slider.value;
// обновление значения слайдера при его изменении
slider.oninput = function () {
  r = slider.value;
};
var obj = document.getElementById("drawing"); // Получить объект холста
var ctx = obj.getContext("2d");
var image = ctx.createImageData(obj.width, obj.height); // создание объекта ImageData
var h = obj.height; // высота холста
var w = obj.width; // ширина холста
var L = new point(0, h / 2); // левый край ландшафта
var R = new point(w, h / 2); // правый край ландшафта

MD(L, R); // алгоритм midpoint displacement
ctx.putImageData(image, 0, 0); // помещение объекта ImageData на холст

// генерация ландшафта при нажатии кнопки
function landscapeGenerator() {
  // очистка текущего холста
  for (i = 0; i < w; i++) {
    for (j = 0; j < h; j++) {
      pixel(i, j, 255);
    }
  }
  MD(L, R); // алгоритм midpoint displacement
  ctx.putImageData(image, 0, 0); // помещение ландшафта на холст
}

// алгоритм midpoint displacement
function MD(L, R) {
  l = Math.sqrt((L.x - R.x) * (L.x - R.x) + (L.y - R.y) * (L.y - R.y)); // расстояние между точками
  C = new point(
    (L.x + R.x) / 2,
    (L.y + R.y) / 2 + Math.random() * 2 * l * r - l * r
  ); //середина между точками, и ее смещение
  pixel(Math.trunc(C.x), Math.trunc(C.y), 0); // отрисовка средней точки
  if (Math.abs(L.x - R.x) > 1) {
    // выполнение алгоритма для левого и правого подотрезка
    MD(L, C);
    MD(C, R);
  }
}

              
            
!
999px

Console