Hitmap 1.3
|
Go to the source code of this file.
Macros | |
#define | HIT_USE_MACRO_OP |
#define | hit_max(a, b) (((a)>(b)) ? (a) : (b)) |
#define | hit_min(a, b) (((a)<(b)) ? (a) : (b)) |
Simple extra functions and operators. Extra functions and operators to transform indexes and shape boundaries.
Definition in file hit_funcop.h.
#define hit_max | ( | a, | |
b | |||
) | (((a)>(b)) ? (a) : (b)) |
Maximum of two numbers (macro version).
a | Number of any type |
b | Number of any type |
Definition at line 59 of file hit_funcop.h.
#define hit_min | ( | a, | |
b | |||
) | (((a)<(b)) ? (a) : (b)) |
Minimum of two numbers (macro version).
a | Number of any type |
b | Number of any type |
Definition at line 65 of file hit_funcop.h.
#define HIT_USE_MACRO_OP |
By default: Use macro versions of operators
Definition at line 51 of file hit_funcop.h.