10 Mar
2008
10 Mar
'08
3:50 p.m.
On Mon, Mar 10, 2008 at 3:39 PM, Jeremy Hunt
Hi all,
is there a way to typecast dur such that I could do something like this?
now => float t;
Or is there a work around? Thanks in advance.
But it's not clear from your example, do you want time in seconds, or ms? (Which is exactly why you can't do the above...) Try: now/1::second => float time_in_seconds; now/1::ms => float time_in_ms; Steve