show/hide this revision's text 2 deleted 3 characters in body

Instead of an epsilon for an IsStillMoving function, maybe you could do use an UpdatePosition function, scheduled on an object-by-object basis based on its velocity.

I'd do something like this (in my own make-it-up-as-you-go pseudocode):

void UpdatePosition(Ball b) {

   TimeStamp now = Clock.GetTime();
   float millisSinceLastUpdate secondsSinceLastUpdate = now.TimeSince(b.LastUpdate)now.TimeSince(b.LastUpdate).InSeconds;

   Point3D oldPosition = b.Position;
   Point3D newPosition = CalculatePosition(b.Position, b.Velocity, interval);
   b.MoveTo(newPosition);

   float epsilonOfAccuracy = 0.5; // Accurate to one half-pixel
   float pixelDistance = oldPosition.DistanceTo(newPosition).InPixelsCamera.PixelDistance(oldPosition, newPosition);
   float fps = System.CurrentFramesPerSecond;
   float secondsToMoveOnePixel = (pixelDistance * millisSinceLastUpdatesecondsSinceLastUpdate) / fps;
   float nextUpdateInterval = secondsToMoveOnePixel / epsilonOfAccuracy;

   b.SetNextUpdateAt(now + nextUpdateInterval);
}

Balls moving very quickly would get updated on every frame. Balls moving more slowly might update every five or ten frames. And balls that have stopped (or nearly stopped) would update only very very rarely.

show/hide this revision's text 1

Instead of an epsilon for an IsStillMoving function, maybe you could do use an UpdatePosition function, scheduled on an object-by-object basis based on its velocity.

I'd do something like this (in my own make-it-up-as-you-go pseudocode):

void UpdatePosition(Ball b) {

   TimeStamp now = Clock.GetTime();
   float millisSinceLastUpdate = now.TimeSince(b.LastUpdate);

   Point3D oldPosition = b.Position;
   Point3D newPosition = CalculatePosition(b.Position, b.Velocity, interval);
   b.MoveTo(newPosition);

   float epsilonOfAccuracy = 0.5; // Accurate to one half-pixel
   float pixelDistance = oldPosition.DistanceTo(newPosition).InPixels;
   float fps = System.CurrentFramesPerSecond;
   float secondsToMoveOnePixel = (pixelDistance * millisSinceLastUpdate) / fps;
   float nextUpdateInterval = secondsToMoveOnePixel / epsilonOfAccuracy;

   b.SetNextUpdateAt(now + nextUpdateInterval);
}

Balls moving very quickly would get updated on every frame. Balls moving more slowly might update every five or ten frames. And balls that have stopped (or nearly stopped) would update only very very rarely.