function gridPath(cols, rows, width = 1, height = 1, initPosition = true) {
const sx = width / cols, sy = height / rows;
const px = Array(rows+1).fill(`h${width}`).join(`m${-width},${sy}`);
const py = Array(cols+1).fill(`v${height}`).join(`m${sx},${-height}`);
return `${initPosition ? 'M0,0' : ''}${px}m${-width}${-height}${py}`;
}