1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/thirdparty/RMIntro/core/timing.h
2014-07-10 18:11:09 +04:00

21 lines
316 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,
TIMING_NUM
} timing_type;
float timing(float x, timing_type type);