WIP - Not meant to be used right now
A C++ library...
Easy to build, no other dependencies and everything is written as simple as possible.
I try to keep up a semantic versioning and also try not to break the ABI.
The project has been structured based on this guide: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1204r0.html
| Core | | Net | Unit | | Geom | | Geo |
Not allowed:
- Exceptions
- Spaces for indentation
Musts:
- Handle errors before return
- Use error codes or similar
- Prefer "expected" type to handle errors and return values
- Write a *.test.cpp for each file
- Complicated implementations/calculations should always have good explanations (/docs, inline)