mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-11-23 08:47:20 +00:00
git-subtree-dir: submodules/TelegramUI git-subtree-mainline: 5c1613d1048026b9e00a6ce753775cef87eb53fa git-subtree-split: fa3ac0b61a27c8dd3296518a15891a6f9750cbf2
22 lines
335 B
C
22 lines
335 B
C
//
|
|
// timing.h
|
|
// IntroOpenGL
|
|
//
|
|
// Created by Ilya Rimchikov on 03/05/14.
|
|
// Copyright (c) 2014 IntroOpenGL. All rights reserved.
|
|
//
|
|
|
|
|
|
typedef enum
|
|
{
|
|
Default=0,
|
|
EaseIn=1,
|
|
EaseOut=2,
|
|
EaseInEaseOut=3,
|
|
Linear=4,
|
|
Sin=5,
|
|
EaseOutBounce,
|
|
TIMING_NUM
|
|
} timing_type;
|
|
|
|
float timing(float x, timing_type type); |