/*! # The built-in rasterizers.
Plotters make a minimal backend ability assumption - which is drawing a pixel on
backend. And this is the rasterizer that utilize this minimal ability to build a
fully functioning backend.
*/
// TODO: ? operator is very slow. See issue #58 for details
pub use draw_line;
pub use draw_rect;
pub use draw_circle;
pub use fill_polygon;
pub use polygonize;