Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 458 Bytes

notes.md

File metadata and controls

44 lines (26 loc) · 458 Bytes

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