class Fusuma::Plugin::Detectors::RotateDetector::Direction

direction of gesture

def calc

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

def initialize(angle:)

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

def to_s

def to_s
  calc
end