dxf2image 0.1.1

dxf2image is a fast and efficient dxf to image converter!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use dxf2image::dxf2svg;

fn main() {
    let start = std::time::Instant::now();

    println!("dxf2svg started");
    let dxf = "./examples/dxf/sample.dxf";
    let svg = "./examples/hoge.svg";
    dxf2svg(dxf, svg).unwrap();

    let end = start.elapsed();
    println!("finish dxf2svg. took {}ms", end.as_millis());
}