diff options
Diffstat (limited to 'misc.cc')
-rw-r--r-- | misc.cc | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -12,25 +12,3 @@ int intlog2(int d) { return i; } -double log2(double x) { - return log(x) /log(2.0); -} - - -// golden ratio - const Real PHI = (1+sqrt(5))/2; -const double ENGRAVERS_SPACE = PHI; - - - - -Real -duration_to_idealspace(Real d, Real w) -{ - // see Roelofs, p. 57 - return w * pow(ENGRAVERS_SPACE, log2(d)); -} - - - - |