mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-05 06:44:56 +08:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
42da9a7ea6
@ -82,9 +82,9 @@
|
||||
|
||||
#define SIN_DEG(A) SIN((A) * DEG_RAD)
|
||||
#define COS_DEG(A) COS((A) * DEG_RAD)
|
||||
#define CLAMP(x, min, max) (x < min ? min : (x > max ? max : x))
|
||||
#define MIN(x, y) (x < y ? x : y)
|
||||
#define MAX(x, y) (x > y ? x : y)
|
||||
#define CLAMP(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) : (x)))
|
||||
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
||||
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
||||
|
||||
#define UNUSED(x) (void)(x)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user