# graphic\_math.h ## **Overview** **Related Modules:** [Graphic](Graphic.md) **Description:** Defines mathematical operation functions and types, including trigonometric functions, two-dimensional vectors, three-dimensional vectors, and matrices. **Since:** 1.0 **Version:** 1.0 ## **Summary** ## Data Structures
MATH_MAX(a, b) ((a) > (b) ? (a) : (b)) |
|
MATH_MIN(a, b) ((a) < (b) ? (a) : (b)) |
|
MATH_ABS(x) ((x) > 0 ? (x) : (-(x))) |
|
MATH_MINUS(a, b) ((a) < (b) ? ((b) - (a)) : ((a) - (b))) |