bresenham_zip 0.1.1

Iterator to perform Bresenham over two lines of the same triangle simultaneusly for triangle rasterization
Documentation
1
2
3
4
5
6
7
//! Module with the BresenhamZips and library logic
pub use zip_x::BresenhamZipX;
pub use zip_y::BresenhamZipY;

mod error;
mod zip_x;
mod zip_y;