class SMF::PitchBendChange
Attributes
val[RW]
value[RW]
value=[RW]
Public Class Methods
new(offset, ch, val)
click to toggle source
Calls superclass method
SMF::ChannelMessage::new
# File lib/smf.rb, line 439 def initialize(offset, ch, val) # val:-2**13/2**13-1 super(offset, ch) @val = val end
Public Instance Methods
==(other)
click to toggle source
Calls superclass method
SMF::ChannelMessage#==
# File lib/smf.rb, line 450 def == (other) super && val == other.val end