Implement Vector3::MinElement

This commit is contained in:
2024-03-20 15:36:27 -04:00
parent f4c6337f12
commit dc41dcf520
4 changed files with 43 additions and 47 deletions

View File

@@ -144,6 +144,6 @@ namespace J3ML::Geometry
void Enclose(const OBB &obb);
bool TestAxis(Vector3 axis, Vector3 v0, Vector3 v1, Vector3 v2) const;
bool TestAxis(const Vector3& axis, const Vector3& v0, const Vector3& v1, const Vector3& v2) const;
};
}