Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMMapViewControlsCommon.h « MapViewControls « CustomViews « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c35e8556d54c6828ba9d819cca8d6e0182877fa (plain)
1
2
3
4
5
6
7
8
9
10
11
static NSTimeInterval const kMenuViewHideFramesCount = 7.0;
static NSTimeInterval const kMenuViewMoveFramesCount = 7.0;

static inline NSTimeInterval framesDuration(NSTimeInterval const framesCount)
{
  static NSTimeInterval const kFPS = 30.0;
  static NSTimeInterval const kFrameDuration = 1.0 / kFPS;
  return kFrameDuration * framesCount;
}

static CGFloat const kViewControlsOffsetToBounds = 4.0;