nandi/bresenham-circlepublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/nandi/bresenham-circle.git
git clone ssh://git@rickub.com/nandi/bresenham-circle.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

bresenham.nimble · 9 lines · 321 BText Blame HistoryRaw
Bresenham midpoint circle visualizer, with a zero-symmetry counterpart 3d0b0a3 nandi 6h ago1version = "0.1.0"
Add LICENSE, fix package metadata d1c5bb8 nandi 6h ago2author = "nandi"
Replace the random sprinkle with a golden-angle sequence 686a373 nandi 4h ago3description = "Midpoint circle algorithm stepped one decision at a time, beside a deterministic golden-angle sampler with no lattice symmetry"
Bresenham midpoint circle visualizer, with a zero-symmetry counterpart 3d0b0a3 nandi 6h ago4license = "MIT"
5srcDir = "src"
6bin = @["bresenham"]
7
8requires "nim >= 2.0.0"
9requires "naylib >= 25.0.0"