GeoClock a GUI "temporal" utility for Runner
Inherits from: Object
Set up a clock starting from Runner' start time. Plus, it allows tempo control.
See also: Runner
Issues
A GeoClock is created when calling aRunner.clock.
Creation / Class Methods
*new (runner, x, y)
Constructor. Create the GUI too
runner - a runner. Default value is nil. All infos are relate to the passed Runner.
x - corner x. Default value is 10.
y - corner y. Default value is 120.
g = Graph.new ;
r = Runner.new(g, name: "Geo") ;
c = GeoClock(r) ;
// the same
// r.clock ;