Class: Fusuma::Plugin::Detectors::SwipeDetector::Quantity

Inherits:
Object
  • Object
show all
Defined in:
lib/fusuma/plugin/detectors/swipe_detector.rb

Overview

quantity of gesture

Instance Method Summary collapse

Constructor Details

#initialize(move_x:, move_y:) ⇒ Quantity

Returns a new instance of Quantity.



168
169
170
171
# File 'lib/fusuma/plugin/detectors/swipe_detector.rb', line 168

def initialize(move_x:, move_y:)
  @x = move_x.to_f.abs
  @y = move_y.to_f.abs
end

Instance Method Details

#calcObject



177
178
179
# File 'lib/fusuma/plugin/detectors/swipe_detector.rb', line 177

def calc
  @x > @y ? @x.abs : @y.abs
end

#to_fObject



173
174
175
# File 'lib/fusuma/plugin/detectors/swipe_detector.rb', line 173

def to_f
  calc.to_f
end