#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