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

/**
 * File: time.h
 */

#include "geom.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 RealVector TimeVector;

#endif