tomstewart89 / BasicLinearAlgebra

A library for using matrices and linear algebra on Arduino
MIT License
185 stars 38 forks source link

Redesign Matrix class to use CRTP #60

Closed tomstewart89 closed 1 year ago

tomstewart89 commented 1 year ago

The current design had a few flaws:

This PR switches the MemT over to a CRTP design which is cleaner and allows lots more operations to take place at compile time.

tomstewart89 commented 1 year ago

This also fixes #59