Sha256: a6a96fc414fa45cad2859f6b32ad4ccca569c1e2b3cb6a2e216f8c696d30370a
Contents?: true
Size: 313 Bytes
Versions: 34
Compression:
Stored size: 313 Bytes
Contents
class Numeric # # +mm(subdivision = 1.0)+: metronome to time converter # # interprets its receiver as a metronome marking to time in seconds # # +subdivision+ the time subdivision # #:nodoc: SECONDS_PER_MINUTE = 60.0 def mmtot(subdiv = 1.0) (SECONDS_PER_MINUTE*subdiv) / self end end
Version data entries
34 entries across 34 versions & 1 rubygems