net.java.joglutils.msg.misc
Interface Time

All Known Implementing Classes:
SystemTime

public interface Time

Interface abstracting concept of time from applications.


Method Summary
 double deltaT()
          Time in seconds since last update.
 double time()
          Time in seconds since beginning of application.
 void update()
          Updates this Time object.
 

Method Detail

update

void update()
Updates this Time object. Call update() each frame before calling the accessor routines.


time

double time()
Time in seconds since beginning of application.


deltaT

double deltaT()
Time in seconds since last update.