MCPcopy Create free account
hub / github.com/cinder/Cinder / fmod

Function fmod

include/cinder/CinderMath.h:74–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72 static T abs (T x) {return ::fabs (double(x));}
73 static T floor (T x) {return ::floor (double(x));}
74 static T fmod (T x, T y) {return ::fmod (double(x), double(y));}
75 static T hypot (T x, T y) {return ::hypot (double(x), double(y));}
76 static T signum (T x) {return ( x >0.0 ) ? 1.0 : ( ( x < 0.0 ) ? -1.0 : 0.0 ); }
77 static T min(T x, T y) {return ( x < y ) ? x : y; }

Callers 5

drawMethod · 0.85
drawMethod · 0.85
calcNormalizedTimeMethod · 0.85
stepToMethod · 0.85
loopTimeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected