MCPcopy Create free account
hub / github.com/anjo76/angelscript / atan2f

Function atan2f

sdk/add_on/scriptmath/scriptmath.cpp:18–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16inline float sinf (float arg) { return std::sin (arg); }
17inline float tanf (float arg) { return std::tan (arg); }
18inline float atan2f (float y, float x) { return std::atan2 (y, x); }
19inline float logf (float arg) { return std::log (arg); }
20inline float powf (float x, float y) { return std::pow (x, y); }
21inline float sqrtf (float arg) { return std::sqrt (arg); }

Callers 1

atan2f_genericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected