euclidean 0.2.0

A collection of operations for euclidean geometry in three dimensions.
Documentation
# Euclidean

This crate contains a collection of type agnostic euclidean algorithms..

These include, but are not limited to:

- Triangle box intersection.
- Segment-segment intersection.
- Projecting a point onto a line.
- Projecting a point onto a plane.
- Find the closest points on two lines.
- And more.

The crate relies on [`linear_isomoprhic`](https://crates.io/crates/linear_isomorphic) to abstract over the underlying
type, meaning that it can be used with a wide variety of underlying vector types.

Some functions are dimension agnostic. However, many assume $\mathbb{R}^3$.

Example use:

```rust
use crate::segment_segment_intersection;

use ::core::f32::consts::PI;
type Vec2 = nalgebra::Vector2<f32>;
type Vec3 = nalgebra::Vector3<f32>;

fn project_onto_polyline() {
    let curve: Vec<_> = (0..50)
        .map(|i| {
            let t = i as f32 / 49.;
            let t = t * PI;

            Vec2::new(t.cos(), t.sin())
        })
        .collect();

    let point = Vec2::new(0., 10.);
    let (proj, param, interval) = project_onto_open_poly_line(&point, &curve);

    assert!((proj - Vec2::new(0., 1.0)).norm() < 0.001,);
    assert!((param - 0.5).abs() < 0.001);
    assert!(interval == 24);
}
```

The library is tested directly against the [Nalgebra](https://crates.io/crates/nalgebra) crate. If you find that it doesn't work with your
own vector type, please open an issue.