use-intersection 0.0.6

Intersection result primitives for RustUse geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# use-intersection

Intersection result primitives for the RustUse geometry workspace.

`use-intersection` starts with shared result enums and traits. It does not try to implement the full
matrix of shape intersection algorithms.

## Example

```rust
use use_intersection::Intersection2;
use use_point::Point2;

let hit = Intersection2::Point(Point2::new(1.0, 2.0));

assert!(!hit.is_empty());
```