| 1746 | return 1; |
| 1747 | } |
| 1748 | static int Cos(lua_State* L)LNOEXCEPT |
| 1749 | { |
| 1750 | lua_pushnumber(L, cos(luaL_checknumber(L, 1) * LDEGREE2RAD)); |
| 1751 | return 1; |
| 1752 | } |
| 1753 | static int ASin(lua_State* L)LNOEXCEPT |
| 1754 | { |
| 1755 | lua_pushnumber(L, asin(luaL_checknumber(L, 1)) * LRAD2DEGREE); |
nothing calls this directly
no outgoing calls
no test coverage detected