11 lines
276 B
C
11 lines
276 B
C
// Copyright (c) 2021 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
|
|
#define mathMod(a,b) (a%b+b)%b
|
|
#define mathMax(a,b) (a<b?b:a)
|
|
#define mathMin(a,b) (a>b?b:a)
|
|
#define mathAbs(n) (n<0?-n:n) |