ixConvertFromSeconds

ixConvertFromSeconds - convert a number of seconds to hours, minutes and seconds

SYNOPSIS

ixConvertFromSeconds time hours minutes seconds

DESCRIPTION

This command converts a number of seconds into hours, minutes and seconds.

ARGUMENTS
time

The time, in seconds, to be converted.

hours

This argument is accessed by reference; that is, the name of a TCL variable. This is the number of hours in time.

minutes

This argument is accessed by reference; that is, the name of a TCL variable. This is the number of minutes in time.

seconds

This argument is accessed by reference; that is, the name of a TCL variable. This is the number of seconds in time.

RETURNS
none
EXAMPLE

set time 10000

set hours 0

set minutes 0

set seconds 0

ixConvertFromSeconds $time hours minutes seconds

SEE ALSO

ixConvertToSeconds