···5050 */
5151#define MATH_GRAVITY_M_S2 (9.8066)
52525353+/*!
5454+ * Minimum of A and B.
5555+ *
5656+ * @ingroup aux_math
5757+ */
5858+#ifndef MIN // Avoid clash with OpenCV def
5959+#define MIN(A, B) ((A) < (B) ? (A) : (B))
6060+#endif
6161+6262+/*!
6363+ * Maximum of A and B.
6464+ *
6565+ * @ingroup aux_math
6666+ */
6767+#ifndef MAX // Avoid clash with OpenCV def
6868+#define MAX(A, B) ((A) > (B) ? (A) : (B))
6969+#endif
7070+7171+/*!
7272+ * X clamped to the range [A, B].
7373+ *
7474+ * @ingroup aux_math
7575+ */
7676+#define CLAMP(X, A, B) (MIN(MAX((X), (A)), (B)))
7777+53785479/*
5580 *