some fun changes.

This commit is contained in:
Yggdrasil75
2025-12-29 13:30:39 -05:00
parent 1888bf6858
commit 82a10cb2c5
6 changed files with 370 additions and 312 deletions

View File

@@ -404,4 +404,14 @@ namespace std {
};
}
template<typename T>
Vec3<T> max(Vec3<T> a, Vec3<T> b) {
return a.max(b);
}
template<typename T>
Vec3<T> min(Vec3<T> a, Vec3<T> b) {
return a.min(b);
}
#endif