summaryrefslogtreecommitdiff
path: root/include/common/time.h
blob: 54a7bb2a58a2d1ab5e390662ff2bc5001c5c97df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef UPEM_MORPHING_TIME
#define UPEM_MORPHING_TIME

/**
 * File: time.h
 */

/**
 * Constants: Time vectors
 *
 * TIME_ORIGIN - the origin of times
 * TIME_UNIT   - a unit time vector
 */
#define TIME_ORIGIN ((TimeVector) 0)
#define TIME_UNIT ((TimeVector) 1)

/**
 * Type: TimeVector
 * An abstract time vector.
 */
typedef float TimeVector;

#endif