X-Git-Url: https://git.r.bdr.sh/rbdr/tomato-sauce/blobdiff_plain/c7b4bd19a006d61c3b4979e884370d123cec7524..HEAD:/lib/screens/circle.js diff --git a/lib/screens/circle.js b/lib/screens/circle.js index d8a4d10..f5d37e3 100644 --- a/lib/screens/circle.js +++ b/lib/screens/circle.js @@ -1,26 +1,32 @@ 'use strict'; -// Draws concentric circles. Each ring has its own color. -const Circle = function (modulation, width, height, renderer) { +/** + * Draws concentric circles. Each ring has its own color. + * + * @function CircleScreen + * @implements IScreen + */ +module.exports = function (modulation, width, height, renderer) { + let response = []; - let circles = width > height ? height : width; + const circles = width > height ? height : width; - for (let i = 0; i < circles; i++) { - let centerX = Math.round(width / 2) + 1; - let centerY = Math.round(height / 2) + 1; + for (let i = 0; i < circles; ++i) { + const centerX = Math.round(width / 2) + 1; + const centerY = Math.round(height / 2) + 1; - let red = Math.floor(Math.random() * 255); - let blue = Math.floor(Math.random() * 255); - let green = Math.floor(Math.random() * 255); + const red = Math.floor(Math.random() * 255); + const blue = Math.floor(Math.random() * 255); + const green = Math.floor(Math.random() * 255); - for (let j = 0; j < 180; j++) { - let angle = 2 * j * (Math.PI / 180); - let x = Math.round(centerX + Math.sin(angle) * i); - let y = Math.round(centerY + Math.cos(angle) * i); + for (let j = 0; j < 180; ++j) { + const angle = 2 * j * (Math.PI / 180); + const x = Math.round(centerX + Math.sin(angle) * i); + const y = Math.round(centerY + Math.cos(angle) * i); if (x <= width && x > 0 && y <= height && y > 0) { - let position = `\x1B[${y};${x}H`; // Move cursor to y,x (CSI y;x H) + const position = `\x1B[${y};${x}H`; // Move cursor to y,x (CSI y;x H) response += `${position}${renderer(red, blue, green)} `; } } @@ -28,5 +34,3 @@ const Circle = function (modulation, width, height, renderer) { return response; }; - -module.exports = Circle;