(May-09-2025, 03:09 PM)deanhystad Wrote: What python are you running and on what OS?
Python 3.13 and Windows 11 64 bit
(May-09-2025, 03:09 PM)deanhystad Wrote: Did you look at them and found them a bad fit?
As I stated this *is* my first attempt at a Python program. Schedule doesn't seem appropriate, and the many, many options in Time are overwhelming and seem more concerned with 'what time is it?' than simply providing time increments.
(May-09-2025, 03:09 PM)deanhystad Wrote: What are your real-time requirements?
I have an object onscreen rotating on its pitch axis at a rate of +3-deg/sec. To achieve reasonably smooth motion, I need to redraw it every 0.1 seconds. How do I sync the re-drawing to occur every 0.1 secs? Can I create, or use some kind of a timer, or do I have to get the time on the computer clock, increment it by 0.1 second, then continuously check it until 0.1 secs have elapsed to commence the redraw for each cycle? I'd like to be able to do a few other calculations in between the re-draw cycles, but I can't miss that 0.1 sec interval or I'll lose sync.