summaryrefslogtreecommitdiff
path: root/include/common/time.h
blob: 060b7bebba50d679de9897e0473ee8171cb2466b (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
 */

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

/**
 * Constants: Time vectors
 *
 * TIME_ORIGIN  - the origin of times
 * TIME_UNIT    - a unit time vector
 */
const TimeVector TIME_ORIGIN = 0;
const TimeVector TIME_UNIT = 1;

#endif