2 releases
Uses old Rust 2015
0.1.1 | Aug 14, 2016 |
---|---|
0.1.0 | Aug 14, 2016 |
#55 in Rendering engine
1,624 downloads per month
Used in 7 crates
(6 directly)
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)