Macros | |
| #define | WSF_MIN(a, b) ((a) < (b) ? (a) : (b)) |
| Returns the minimum of two values. More... | |
| #define | WSF_MAX(a, b) ((a) > (b) ? (a) : (b)) |
| Returns the maximum of two values. More... | |
| #define WSF_MAX | ( | a, | |
| b | |||
| ) | ((a) > (b) ? (a) : (b)) |
Returns the maximum of two values.
Definition at line 44 of file wsf_math.h.
| #define WSF_MIN | ( | a, | |
| b | |||
| ) | ((a) < (b) ? (a) : (b)) |
Returns the minimum of two values.
Definition at line 41 of file wsf_math.h.