RobotUIKit API
RobotUIKit/RUIFlickGestureRecognizer.h
00001 //
00002 //  RUIFlickGestureRecognizer.h
00003 //  RobotKit
00004 //
00005 //  Copyright 2011 Orbotix Inc. All rights reserved.
00006 //
00007 
00008 #import <UIKit/UIKit.h>
00009 #import <UIKit/UIGestureRecognizerSubclass.h>
00010 
00020 @interface RUIFlickGestureRecognizer : UIGestureRecognizer {
00021 @private
00022     double          heading;
00023     CGPoint         translation; // In attach view's coordinates
00024     double          speed;
00025     
00026     NSTimeInterval  timeStamp;
00027     CGPoint         startLocation;
00028 }
00029 
00031 @property (nonatomic, readonly) double  heading;
00032 
00034 @property (nonatomic, readonly) CGPoint translation;
00035 
00037 @property (nonatomic, readonly) double  speed;
00038 
00039 @end
 All Classes Functions Properties