rene 0.2.0

Computational geometry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) use self::event::{is_event_left, is_event_right, Event};
pub(crate) use self::operation_kind::{
    DIFFERENCE, INTERSECTION, SYMMETRIC_DIFFERENCE, UNION,
};

mod constants;
mod event;
mod events_queue_key;
pub(crate) mod linear;
pub(crate) mod mixed;
mod operation_kind;
pub(crate) mod shaped;
mod sweep_line_key;
pub(crate) mod traits;