2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-07 19:57:48 +00:00

chore: use available methods from Utils component

This commit is contained in:
Jan Laupetin
2025-11-06 18:18:29 +01:00
parent 02a3d4e7cf
commit 03670ea6e1
4 changed files with 18 additions and 29 deletions

View File

@@ -88,11 +88,6 @@ namespace BSP
return result;
}
size_t BSPUtil::allignBy128(size_t size)
{
return ((size + 127) & 0xFFFFFF80);
}
float BSPUtil::distBetweenPoints(vec3_t& p1, vec3_t& p2)
{
float x = p2.x - p1.x;