MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / math_atan2

Function math_atan2

third-party/lua-5.2.4/src/lmathlib.c:76–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76static int math_atan2 (lua_State *L) {
77 lua_pushnumber(L, l_mathop(atan2)(luaL_checknumber(L, 1),
78 luaL_checknumber(L, 2)));
79 return 1;
80}
81
82static int math_ceil (lua_State *L) {
83 lua_pushnumber(L, l_mathop(ceil)(luaL_checknumber(L, 1)));

Callers

nothing calls this directly

Calls 2

lua_pushnumberFunction · 0.70
luaL_checknumberFunction · 0.70

Tested by

no test coverage detected