This will stop all timers with the given ID. This is useful when you need to stop a perpetual timer or a timer that has not yet expired.
# Start a 10 Hz perpetual timer with ID equal to 42
viz.starttimer(42, 0.1, viz.FOREVER)
# Kill timer ID 42
viz.killtimer(42)