Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ClassiCube/ClassiCube
/ Math_Floor
Function
Math_Floor
src/ExtMath.c:13–16 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
11
12
13
int Math_Floor(float value) {
14
int valueI = (int)value;
15
return valueI > value ? valueI - 1 : valueI;
16
}
17
18
int Math_Ceil(float value) {
19
int valueI = (int)value;
Callers
15
CollidesHor
Function · 0.85
IntersectsBlock
Function · 0.85
PhysicsTick
Function · 0.85
RainParticle_Render
Function · 0.85
TerrainParticle_Render
Function · 0.85
CustomParticle_Render
Function · 0.85
HotbarWidget_Reposition
Function · 0.85
LocalPlayer_HandleSetSpawn
Function · 0.85
EntityShadow_DrawCircle
Function · 0.85
EntityShadow_Draw
Function · 0.85
Respawn_HighestSolidY
Function · 0.85
LocalInterpComp_SetPosition
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected