Class: Fusuma::Plugin::Detectors::RotateDetector::Direction

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

Overview

direction of gesture

Constant Summary collapse

CLOCKWISE =
'clockwise'
COUNTERCLOCKWISE =
'counterclockwise'

Instance Method Summary collapse

Constructor Details

#initialize(angle:) ⇒ Direction

Returns a new instance of Direction.



145
146
147
# File 'lib/fusuma/plugin/detectors/rotate_detector.rb', line 145

def initialize(angle:)
  @angle = angle.to_f
end

Instance Method Details

#calcObject



153
154
155
156
157
158
159
# File 'lib/fusuma/plugin/detectors/rotate_detector.rb', line 153

def calc
  if @angle.positive?
    CLOCKWISE
  else
    COUNTERCLOCKWISE
  end
end

#to_sObject



149
150
151
# File 'lib/fusuma/plugin/detectors/rotate_detector.rb', line 149

def to_s
  calc
end