File size: 557 Bytes
4ee4376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export default function (start, end) {
  let dx = end.x - start.x;
  let dy = end.y - start.y;

  let nx = Math.abs(dx);
  let ny = Math.abs(dy);

  let sx = dx > 0? 1 : -1;
  let sy = dy > 0? 1 : -1;

  let point = { x: start.x, y: start.y };
  let cells = [];

  cells.push({ x: start.x, y: start.y });

  for (let ix = 0, iy = 0; ix < nx || iy < ny;) {
    if ((0.5 + ix) / nx < (0.5 + iy) / ny) {
      point.x += sx;
      ix++;
    } else {
      point.y += sy;
      iy++;
    }
    
    cells.push({ x: point.x, y: point.y });
  }

  return cells;
}