Day 49 complete

This commit is contained in:
2024-01-01 02:53:15 -05:00
parent 2c3b6d9e66
commit 393f98a03d
6 changed files with 170 additions and 74 deletions

View File

@ -14,6 +14,13 @@ f32 abs( f32 value )
return result;
}
inline
s32 sign( s32 value )
{
s32 result = value >= 0 ? 1 : -1;
return result;
}
inline
f32 sqrt( f32 value )
{