MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / floor

Function floor

include/hxMath.h:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 static void __boot();
22
23 inline static int floor(double inX) { return __int__(::std::floor(inX)); }
24 inline static int ceil(double inX) { return __int__(::std::ceil(inX)); }
25 inline static int round(double inX) { return floor(inX+0.5); }
26 inline static double ffloor(double inX) { return ::std::floor(inX); }

Callers 5

myp_encrypt_pass_323Function · 0.85
roundFunction · 0.85
ffloorFunction · 0.85
froundFunction · 0.85
reinterpretMethod · 0.85

Calls 1

__int__Function · 0.85

Tested by

no test coverage detected