CellModules
|
Functions | |
static double | sToMn (double s) |
Converts seconds to minutes. More... | |
static double | sToH (double s) |
Converts seconds to hours. More... | |
static double | mnToS (double mn) |
Converts minutes to seconds. More... | |
static double | mnToH (double mn) |
Converts minutes to hours. More... | |
static double | hToS (double h) |
Converts hours to seconds. More... | |
static double | hToMn (double h) |
Converts hours to minutes. More... | |
Variables | |
static const double | mnInS = 60. |
Number of seconds in a minute. More... | |
static const double | hInS = 3600. |
Number of seconds in an hour. More... | |
static const double | hInMn = 60. |
Number of minutes in an hour. More... | |
|
inlinestatic |
Converts hours to minutes.
h | The number of hours. |
Definition at line 72 of file TimeConvert.hpp.
|
inlinestatic |
Converts hours to seconds.
h | The number of hours. |
Definition at line 64 of file TimeConvert.hpp.
|
inlinestatic |
Converts minutes to hours.
mn | The number of minutes. |
Definition at line 56 of file TimeConvert.hpp.
|
inlinestatic |
Converts minutes to seconds.
mn | The number of minutes. |
Definition at line 48 of file TimeConvert.hpp.
|
inlinestatic |
Converts seconds to hours.
s | The number of seconds. |
Definition at line 40 of file TimeConvert.hpp.
|
inlinestatic |
Converts seconds to minutes.
s | The number of seconds. |
Definition at line 32 of file TimeConvert.hpp.
|
static |
Number of minutes in an hour.
Definition at line 24 of file TimeConvert.hpp.
|
static |
Number of seconds in an hour.
Definition at line 19 of file TimeConvert.hpp.
|
static |
Number of seconds in a minute.
Definition at line 14 of file TimeConvert.hpp.