2 releases

Uses old Rust 2015

0.1.1 Aug 14, 2016
0.1.0 Aug 14, 2016

#48 in Rendering engine

Download history 282/week @ 2023-11-10 301/week @ 2023-11-17 223/week @ 2023-11-24 172/week @ 2023-12-01 262/week @ 2023-12-08 227/week @ 2023-12-15 223/week @ 2023-12-22 189/week @ 2023-12-29 228/week @ 2024-01-05 215/week @ 2024-01-12 187/week @ 2024-01-19 202/week @ 2024-01-26 133/week @ 2024-02-02 269/week @ 2024-02-09 295/week @ 2024-02-16 266/week @ 2024-02-23

1,006 downloads per month
Used in 5 crates

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)

lib.rs:

Iterator-based Bresenham's line drawing algorithm

[Bresenham's line drawing algorithm] (https://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm) is fast algorithm to draw a line between two points. This crate implements the fast integer variant, using an iterator-based appraoch for flexibility. It calculates coordinates without knowing anything about drawing methods or surfaces.

Example:

extern crate bresenham;
use bresenham::Bresenham;

fn main() {
    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