plotters_conrod/
lib.rs

1// plotters-conrod
2//
3// Conrod backend for Plotters
4// Copyright: 2020, Valerian Saliou <valerian@valeriansaliou.name>
5// License: MIT
6
7/*!
8   The Plotters Conrod backend.
9
10   This is an implementation of a Conrod backend for Plotters. This is more efficient than using the default Bitmap backend when plotting in Conrod, as it has been observed that Conrod was quite inefficient at re-rendering images at high FPS (eg. for real-time plotting).
11
12   This backend has been optimized as for speed, and as to render plots that look very similar to the default Bitmap backend, if not indistinguishable.
13
14   See the documentation for [ConrodBackend](struct.ConrodBackend.html) for more details.
15*/
16
17mod backend;
18mod error;
19mod graph;
20mod triangulate;
21mod utils;
22
23pub use backend::ConrodBackend;
24pub use error::ConrodBackendError;
25pub use graph::ConrodBackendReusableGraph;