Implemented tangible.find. Octrees are more or less done! Yay!

This commit is contained in:
2022-07-14 00:57:11 -04:00
parent 69efb12c26
commit 4735c1fd7d
6 changed files with 466 additions and 114 deletions

View File

@@ -407,5 +407,9 @@ inline std::ostream &operator<<(std::ostream &oss, util::FormattedNumber<VALUE>
return oss;
}
inline std::ostream &operator<<(std::ostream &oss, const util::XYZ &xyz) {
oss << xyz.x << "," << xyz.y << "," << xyz.z;
return oss;
}
#endif // UTIL_HPP