#bresenham #algorithm #bresenham-rs

bresenham

A fast, iterator-based integer-only implementation of Bresenham's line algorithm

2 releases

Uses old Rust 2015

0.1.1 Aug 14, 2016
0.1.0 Aug 14, 2016

#55 in Rendering engine

Download history 608/week @ 2024-12-08 584/week @ 2024-12-15 200/week @ 2024-12-22 139/week @ 2024-12-29 435/week @ 2025-01-05 751/week @ 2025-01-12 611/week @ 2025-01-19 366/week @ 2025-01-26 464/week @ 2025-02-02 436/week @ 2025-02-09 477/week @ 2025-02-16 547/week @ 2025-02-23 358/week @ 2025-03-02 532/week @ 2025-03-09 360/week @ 2025-03-16 313/week @ 2025-03-23

1,624 downloads per month
Used in 7 crates (6 directly)

MIT license

6KB
131 lines

bresenham-rs

Implements Bresenham's line drawing algorithm in Rust using an iterator over all points in the line. Most, if not all overhead should evaporate when inlined by the compiler.

Example use:

for (x, y) in Bresenham::new((0, 1), (6, 4)) {
    println!("{}, {}", x, y);
}

Will print:

(0, 1)
(1, 1)
(2, 2)
(3, 2)
(4, 3)
(5, 3)

No runtime deps