plot_interface/
plot_interface_lib.rs

1#![ cfg_attr( not( feature = "use_std" ), no_std ) ]
2#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
3#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
4#![ doc( html_root_url = "https://docs.rs/plot_interface/latest/plot_interface/" ) ]
5#![ warn( rust_2018_idioms ) ]
6#![ warn( missing_debug_implementations ) ]
7#![ warn( missing_docs ) ]
8
9// #![ feature( trace_macros ) ]
10
11//!
12//! Plot interface.
13//!
14
15#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
16
17#[ doc( inline ) ]
18pub use wplot::*;