robust-predicates 0.1.1

Robust predicates for computer geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cc;

// heavily inspired by 
// https://github.com/andersforsgren/robust2d/blob/master/build.rs

fn main() {
    cc::Build::new()
        .file("src/predicates.c")
        .flag("-w") // in order to hide maybe-uninitialized warnings
        .compile("predicates");
}