I understand that I need to do the following type of thing (see events below), however what angles should i be looking for when swiping left. Swiping right is always somewhere between -10 and 10 degrees(weird numbers) but left seems to be either something positive like 180 or something completely weird like (minus) -165
+ Touch: Is in touch
----+ System: Touch.SpeedAt(0) ≥ 200
// Swiped Left
--------+ System: 190 ≤ Touch.AngleAt(0) ≤ 170 //WHAT ANGLES SHOULD I BE LOOKING FOR (these are wrong)???
I would expect 90 degrees to be right and 270 to be left , but there seems to be some angle craziness going on.
?