2023-01-10 15:26:54 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* math_defs.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2015-04-18 19:38:54 +02:00
|
|
|
#ifndef MATH_DEFS_H
|
|
|
|
#define MATH_DEFS_H
|
|
|
|
|
|
|
|
#define CMP_EPSILON 0.00001
|
2017-03-05 16:44:50 +01:00
|
|
|
#define CMP_EPSILON2 (CMP_EPSILON * CMP_EPSILON)
|
2019-02-26 01:46:24 +01:00
|
|
|
|
2015-04-18 19:38:54 +02:00
|
|
|
#define CMP_NORMALIZE_TOLERANCE 0.000001
|
|
|
|
#define CMP_POINT_IN_PLANE_EPSILON 0.00001
|
|
|
|
|
2018-07-20 20:09:17 +02:00
|
|
|
#define Math_SQRT12 0.7071067811865475244008443621048490
|
|
|
|
#define Math_SQRT2 1.4142135623730950488016887242
|
|
|
|
#define Math_LN2 0.6931471805599453094172321215
|
|
|
|
#define Math_TAU 6.2831853071795864769252867666
|
|
|
|
#define Math_PI 3.1415926535897932384626433833
|
|
|
|
#define Math_E 2.7182818284590452353602874714
|
|
|
|
#define Math_INF INFINITY
|
|
|
|
#define Math_NAN NAN
|
|
|
|
|
2017-04-06 00:47:13 +02:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
#define MATH_CHECKS
|
|
|
|
#endif
|
|
|
|
|
2019-02-26 01:46:24 +01:00
|
|
|
//this epsilon is for values related to a unit size (scalar or vector len)
|
|
|
|
#ifdef PRECISE_MATH_CHECKS
|
|
|
|
#define UNIT_EPSILON 0.00001
|
|
|
|
#else
|
|
|
|
//tolerate some more floating point error normally
|
|
|
|
#define UNIT_EPSILON 0.001
|
|
|
|
#endif
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
#define USEC_TO_SEC(m_usec) ((m_usec) / 1000000.0)
|
2015-04-18 19:38:54 +02:00
|
|
|
|
|
|
|
enum ClockDirection {
|
2017-03-05 16:44:50 +01:00
|
|
|
CLOCKWISE,
|
2015-04-18 19:38:54 +02:00
|
|
|
COUNTERCLOCKWISE
|
|
|
|
};
|
|
|
|
|
2018-07-20 20:09:17 +02:00
|
|
|
enum Orientation {
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2018-07-20 20:09:17 +02:00
|
|
|
HORIZONTAL,
|
|
|
|
VERTICAL
|
|
|
|
};
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2018-07-20 20:09:17 +02:00
|
|
|
enum HAlign {
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2018-07-20 20:09:17 +02:00
|
|
|
HALIGN_LEFT,
|
|
|
|
HALIGN_CENTER,
|
|
|
|
HALIGN_RIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum VAlign {
|
|
|
|
|
|
|
|
VALIGN_TOP,
|
|
|
|
VALIGN_CENTER,
|
|
|
|
VALIGN_BOTTOM
|
|
|
|
};
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2018-07-20 20:09:17 +02:00
|
|
|
enum Margin {
|
|
|
|
|
|
|
|
MARGIN_LEFT,
|
|
|
|
MARGIN_TOP,
|
|
|
|
MARGIN_RIGHT,
|
|
|
|
MARGIN_BOTTOM
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Corner {
|
|
|
|
|
|
|
|
CORNER_TOP_LEFT,
|
|
|
|
CORNER_TOP_RIGHT,
|
|
|
|
CORNER_BOTTOM_RIGHT,
|
|
|
|
CORNER_BOTTOM_LEFT
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2021-10-28 14:15:02 +02:00
|
|
|
* The "Real" type is an abstract type used for real numbers, such as 1.5,
|
|
|
|
* in contrast to integer numbers. Precision can be controlled with the
|
|
|
|
* presence or absence of the REAL_T_IS_DOUBLE define.
|
|
|
|
*/
|
2018-07-20 20:09:17 +02:00
|
|
|
#ifdef REAL_T_IS_DOUBLE
|
|
|
|
typedef double real_t;
|
|
|
|
#else
|
|
|
|
typedef float real_t;
|
2015-04-18 19:38:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // MATH_DEFS_H
|