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

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