Sha256: a7d1fe9b513691681159d03b9221d5f052bc43e6f4af6d07c6afebfefec1d53b
Contents?: true
Size: 795 Bytes
Versions: 1
Compression:
Stored size: 795 Bytes
Contents
module Xi::CoreExt module Numeric def midi_to_cps 440 * (2 ** ((self - 69) / 12.0)) end def db_to_amp 10 ** (self / 20.0) end def degree_to_key(scale, steps_per_octave) accidental = (self - self.to_i) * 10.0 inner_key = scale[(self - 1) % scale.size] base_key = ((self - 1) / scale.size).to_i * steps_per_octave + inner_key if accidental != 0 base_key + accidental * (steps_per_octave / 12.0) else base_key end end end end if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.4') class Fixnum include Xi::CoreExt::Numeric end else class Integer include Xi::CoreExt::Numeric end end class Float include Xi::CoreExt::Numeric end class Rational include Xi::CoreExt::Numeric end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xi-lang-0.1.6 | lib/xi/core_ext/numeric.rb |