UNPKG

@minofrk/xelto-diagram-canvas

Version:

An implementation of <xelto-diagram> in TypeScript.

17 lines 459 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function* iterateAllCells() { for (let y = 0; y < 7; y++) { for (let x = 0; x < 7; x++) { yield { leftTop: { x: 5 + x * 2, y: 1 + y * 2, }, index: { x, y }, }; } } } exports.default = iterateAllCells; //# sourceMappingURL=iterate-all-cells.js.map