use-projective 0.0.6

Projective geometry primitives for the RustUse geometry workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# use-projective

Projective geometry primitives for the RustUse geometry workspace.

`use-projective` stores homogeneous coordinate records for projective points, lines, and planes. It
does not attempt deep algebraic geometry.

## Example

```rust
use use_projective::ProjectivePoint;

let point = ProjectivePoint::new(vec![1.0, 2.0, 1.0]).expect("valid point");

assert_eq!(point.dimension(), 2);
```