No description
Find a file
2026-03-18 12:35:54 -07:00
.gitignore init 2022-05-17 09:20:48 -07:00
.gitlab-ci.yml ci 2023-12-16 09:45:31 -08:00
bresenham.go init 2022-05-17 09:20:48 -07:00
bresenham_test.go init 2022-05-17 09:20:48 -07:00
go.mod add github link to mod 2022-05-17 09:49:31 -07:00
go.sum init 2022-05-17 09:20:48 -07:00
LICENSE init 2022-05-17 09:20:48 -07:00
README Convert README from markdown to plaintext 2026-03-18 12:35:54 -07:00

Bresenham

A quick generic implementation of Bresenham's Line Algorithm.

-- Usage --

Arguments are constrained to signed types. The line is returned as a slice of type `Point[T]`, a type provided by the library.