comparison system/System.cpp @ 1184:e5a1d815f331 3.0-integration

Merge from the default branch
author Chris Cannam
date Thu, 21 Apr 2016 15:29:30 +0100
parents 6b1af0f05f06 a6929fb9cc77
children 6b847a59d908
comparison
equal deleted inserted replaced
1182:a1f410f895d3 1184:e5a1d815f331
323 float modf(float x, float y) { return x - (y * floorf(x / y)); } 323 float modf(float x, float y) { return x - (y * floorf(x / y)); }
324 324
325 double princarg(double a) { return mod(a + M_PI, -2 * M_PI) + M_PI; } 325 double princarg(double a) { return mod(a + M_PI, -2 * M_PI) + M_PI; }
326 float princargf(float a) { return float(princarg(a)); } 326 float princargf(float a) { return float(princarg(a)); }
327 327
328