Loading...
Searching...
No Matches
#include <CSFML/System/Export.h>
Go to the source code of this file.
Classes | |
struct | sfTime |
Represents a time value. More... | |
Functions | |
float | sfTime_asSeconds (sfTime time) |
Return a time value as a number of seconds. | |
int32_t | sfTime_asMilliseconds (sfTime time) |
Return a time value as a number of milliseconds. | |
int64_t | sfTime_asMicroseconds (sfTime time) |
Return a time value as a number of microseconds. | |
sfTime | sfSeconds (float amount) |
Construct a time value from a number of seconds. | |
sfTime | sfMilliseconds (int32_t amount) |
Construct a time value from a number of milliseconds. | |
sfTime | sfMicroseconds (int64_t amount) |
Construct a time value from a number of microseconds. | |
Variables | |
const sfTime | sfTime_Zero |
Predefined "zero" time value. | |
Function Documentation
◆ sfMicroseconds()
sfTime sfMicroseconds | ( | int64_t | amount | ) |
Construct a time value from a number of microseconds.
- Parameters
-
amount Number of microseconds
- Returns
- Time value constructed from the amount of microseconds
◆ sfMilliseconds()
sfTime sfMilliseconds | ( | int32_t | amount | ) |
Construct a time value from a number of milliseconds.
- Parameters
-
amount Number of milliseconds
- Returns
- Time value constructed from the amount of milliseconds
◆ sfSeconds()
sfTime sfSeconds | ( | float | amount | ) |
Construct a time value from a number of seconds.
- Parameters
-
amount Number of seconds
- Returns
- Time value constructed from the amount of seconds
◆ sfTime_asMicroseconds()
int64_t sfTime_asMicroseconds | ( | sfTime | time | ) |
Return a time value as a number of microseconds.
- Parameters
-
time Time value
- Returns
- Time in microseconds
◆ sfTime_asMilliseconds()
int32_t sfTime_asMilliseconds | ( | sfTime | time | ) |
Return a time value as a number of milliseconds.
- Parameters
-
time Time value
- Returns
- Time in milliseconds
◆ sfTime_asSeconds()
float sfTime_asSeconds | ( | sfTime | time | ) |
Return a time value as a number of seconds.
- Parameters
-
time Time value
- Returns
- Time in seconds