rtxFloat.h File Reference
#include "rtxsrc/rtxCommon.h"
Go to the source code of this file.
Defines | |
#define | rtxFloatEqual(a, b) rtxFloatEqualImpl(a, b) |
#define | rtxFloatGreater(a, b) ((a>b) && !rtxFloatEqual(a,b)) |
#define | rtxFloatGreaterOrEqual(a, b) ((a>b) || rtxFloatEqual(a,b)) |
#define | rtxFloatSmaller(a, b) ((a<b) && !rtxFloatEqual(a,b)) |
#define | rtxFloatSmallerOrEqual(a, b) ((a<b) || rtxFloatEqual(a,b)) |
#define | rtxDoubleEqual(a, b) rtxDoubleEqualImpl(a, b) |
#define | rtxDoubleGreater(a, b) ((a>b) && !rtxDoubleEqual(a,b)) |
#define | rtxDoubleGreaterOrEqual(a, b) ((a>b) || rtxDoubleEqual(a,b)) |
#define | rtxDoubleSmaller(a, b) ((a<b) && !rtxDoubleEqual(a,b)) |
#define | rtxDoubleSmallerOrEqual(a, b) ((a<b) || rtxDoubleEqual(a,b)) |
Detailed Description
Definition in file rtxFloat.h.