blob: 3024cdee552123a78e72b74f976a5ca2630ba1a5 (
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
26
27
28
29
30
31
|
#ifndef UPEM_MORPHING_TIME
#define UPEM_MORPHING_TIME
/**
* File: time.h
* > Who can say where the road goes...
* > Where the day flows, only time...
* -- Enya
*
* Author:
* Pacien TRAN-GIRARD
*/
#include "common/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
|