sdlAtan2 function

double sdlAtan2(
  1. double y,
  2. double x
)
extern DECLSPEC double SDLCALL SDL_atan2(double y, double x)

Implementation

double sdlAtan2(double y, double x) {
  final sdlAtan2LookupFunction = libSdl2.lookupFunction<
      Double Function(Double y, Double x),
      double Function(double y, double x)>('SDL_atan2');
  return sdlAtan2LookupFunction(y, x);
}