Clock::GetElapsedTime () returns the time in seconds. I think this is way too
coarse grained, when i call (and reset) this every frame, it always returns 0.
No wonder, my machine can draw more than one frame per second...
I think the method should return the elapsed time in milliseconds.
The reason is, i want to use the clock to animate my objects. In a simple
example, when my objects just moves straight with a given speed, i can
determine its new position, given the time passed by since the last frame.
That does'nt work however, if the time passed is always 0.
My guess is, other people had the same problem, how did you solve it?
And out of couriosity: What is the purpose of a clock with seconds granularity?