Skip to content
Snippets Groups Projects

Draft: Develop

Open Raphael Sturgis requested to merge develop into main
1 file
+ 4
0
Compare changes
  • Side-by-side
  • Inline
+ 4
0
from numba import jit
@jit(nopython=True)
def bresenham(x1, y1, x2, y2):
dx = int(x2 - x1)
dy = int(y2 - y1)
Loading