Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
floating_point.h File Reference
#include <math.h>

Go to the source code of this file.

Functions

double fmod_ieee (double x, double y)
 
double atan2_ieee (double y, double x)
 

Function Documentation

◆ atan2_ieee()

double atan2_ieee ( double  y,
double  x 
)
inline

Definition at line 13 of file floating_point.h.

13 {
14 return atan2(y, x);
15}
double y
double x

◆ fmod_ieee()

double fmod_ieee ( double  x,
double  y 
)
inline

Definition at line 10 of file floating_point.h.

10 {
11 return fmod(x, y);
12}