Document and refactor geom code.

- Doxygenate headers.
- Rename to bring methods and functions in line with everything else.
This commit is contained in:
2023-10-20 20:45:39 -07:00
parent 4b1007123a
commit 6a421d6adf
27 changed files with 802 additions and 680 deletions

View File

@@ -58,7 +58,7 @@ Assert(bool condition)
#else
std::stringstream msg;
msg << "assertion failed at " << __FILE__ << ":" << __LINE__;
msg << "assertion failed At " << __FILE__ << ":" << __LINE__;
throw AssertionFailed(msg.str());
#endif
#else