Page 2 of 2

Re: Measuring short times in decimal seconds

Posted: Wed Oct 04, 2017 8:20 am
by steve
Jona wrote:your plugin gives the duration out to 5 decimal points, but not the objective start and stop time. Is there a way to get this information from your plugin?
Try this version:
show-selection-time.ny
(899 Bytes) Downloaded 52 times
Note that these lines in the file configure how the times are displayed. I think it is fairly obvious how to modify it if you need to.

Code: Select all

;; Configuration settings:
(setf multiplier 1000)  ;multiply by 1000 for time in ms
(setf units "ms")       ;time units as appears in output string
(setf decimal-places 1) ;number of decimal places

Re: Measuring short times in decimal seconds

Posted: Wed Oct 11, 2017 10:12 pm
by Jona
Awesome, this is perfect Steve. Thanks so much!