projgeom-rs 0.1.3

Projective Geometry in Rust
Documentation
# Projective Geometry

- allow integer arithmetic
- computer vision + AR

## 🐍 Python (prototyping)

Good:

- Simple
- Arbitrary integer precision
- Symbolic computing (theorem proving)

Bad:

- Slow
- No inline function
- No type checking (mypy)

---

## 🦀 Rust

Good:

- inline function
- Quick check overflow detection (debug version)

Bad:

- Not object-oriented

---

## C++

Good:

- inline function
- constexpr everything

Bad:

- no quickcheck