vsvg 0.5.0

Core library for pen-plotter graphics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Macro to return a test file path located in `resources/fixtures`.
#[macro_export]
macro_rules! test_file {
    ($fname:expr) => {{
        let mut path = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"));
        path.push("tests");
        path.push("fixtures");
        path.push($fname);
        path
    }};
}