mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 21:50:05 +00:00
8 lines
170 B
C++
8 lines
170 B
C++
float (float a, float b) idiv =
|
|
{
|
|
return ((a & -1) / (b & -1)) & -1;
|
|
};
|
|
float (float a, float b) imod =
|
|
{
|
|
return (a & -1) - (b & -1) * (((a & -1) / (b & -1)) & -1);
|
|
};
|