/* * Copyright (c), Recep Aslantas. * * MIT License (MIT), http://opensource.org/licenses/MIT * Full license can be found in the LICENSE file */ /* FUNCTIONS: CGLM_INLINE void glm_ivec3(ivec4 v4, ivec3 dest) CGLM_INLINE void glm_ivec3_copy(ivec3 a, ivec3 dest) CGLM_INLINE void glm_ivec3_zero(ivec3 v) CGLM_INLINE void glm_ivec3_one(ivec3 v) CGLM_INLINE void glm_ivec3_add(ivec3 a, ivec3 b, ivec3 dest) CGLM_INLINE void glm_ivec3_adds(ivec3 v, int s, ivec3 dest) CGLM_INLINE void glm_ivec3_sub(ivec3 a, ivec3 b, ivec3 dest) CGLM_INLINE void glm_ivec3_subs(ivec3 v, int s, ivec3 dest) CGLM_INLINE void glm_ivec3_mul(ivec3 a, ivec3 b, ivec3 dest) CGLM_INLINE void glm_ivec3_scale(ivec3 v, int s, ivec3 dest) CGLM_INLINE int glm_ivec3_distance2(ivec3 a, ivec3 b) CGLM_INLINE float glm_ivec3_distance(ivec3 a, ivec3 b) CGLM_INLINE void glm_ivec3_maxv(ivec3 a, ivec3 b, ivec3 dest) CGLM_INLINE void glm_ivec3_minv(ivec3 a, ivec3 b, ivec3 dest) CGLM_INLINE void glm_ivec3_clamp(ivec3 v, int minVal, int maxVal) CGLM_INLINE void glm_ivec3_abs(ivec3 v, ivec3 dest) */ #ifndef cglm_ivec3_h #define cglm_ivec3_h #include "common.h" /*! * @brief init ivec3 using ivec4 * * @param[in] v4 vector4 * @param[out] dest destination */ CGLM_INLINE void glm_ivec3(ivec4 v4, ivec3 dest) { dest[0] = v4[0]; dest[1] = v4[1]; dest[2] = v4[2]; } /*! * @brief copy all members of [a] to [dest] * * @param[in] a source vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_copy(ivec3 a, ivec3 dest) { dest[0] = a[0]; dest[1] = a[1]; dest[2] = a[2]; } /*! * @brief set all members of [v] to zero * * @param[out] v vector */ CGLM_INLINE void glm_ivec3_zero(ivec3 v) { v[0] = v[1] = v[2] = 0; } /*! * @brief set all members of [v] to one * * @param[out] v vector */ CGLM_INLINE void glm_ivec3_one(ivec3 v) { v[0] = v[1] = v[2] = 1; } /*! * @brief add vector [a] to vector [b] and store result in [dest] * * @param[in] a first vector * @param[in] b second vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_add(ivec3 a, ivec3 b, ivec3 dest) { dest[0] = a[0] + b[0]; dest[1] = a[1] + b[1]; dest[2] = a[2] + b[2]; } /*! * @brief add scalar s to vector [v] and store result in [dest] * * @param[in] v vector * @param[in] s scalar * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_adds(ivec3 v, int s, ivec3 dest) { dest[0] = v[0] + s; dest[1] = v[1] + s; dest[2] = v[2] + s; } /*! * @brief subtract vector [b] from vector [a] and store result in [dest] * * @param[in] a first vector * @param[in] b second vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_sub(ivec3 a, ivec3 b, ivec3 dest) { dest[0] = a[0] - b[0]; dest[1] = a[1] - b[1]; dest[2] = a[2] - b[2]; } /*! * @brief subtract scalar s from vector [v] and store result in [dest] * * @param[in] v vector * @param[in] s scalar * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_subs(ivec3 v, int s, ivec3 dest) { dest[0] = v[0] - s; dest[1] = v[1] - s; dest[2] = v[2] - s; } /*! * @brief multiply vector [a] with vector [b] and store result in [dest] * * @param[in] a frist vector * @param[in] b second vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_mul(ivec3 a, ivec3 b, ivec3 dest) { dest[0] = a[0] * b[0]; dest[1] = a[1] * b[1]; dest[2] = a[2] * b[2]; } /*! * @brief multiply vector [a] with scalar s and store result in [dest] * * @param[in] v vector * @param[in] s scalar * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_scale(ivec3 v, int s, ivec3 dest) { dest[0] = v[0] * s; dest[1] = v[1] * s; dest[2] = v[2] * s; } /*! * @brief squared distance between two vectors * * @param[in] a first vector * @param[in] b second vector * @return returns squared distance (distance * distance) */ CGLM_INLINE int glm_ivec3_distance2(ivec3 a, ivec3 b) { int xd, yd, zd; xd = a[0] - b[0]; yd = a[1] - b[1]; zd = a[2] - b[2]; return xd * xd + yd * yd + zd * zd; } /*! * @brief distance between two vectors * * @param[in] a first vector * @param[in] b second vector * @return returns distance */ CGLM_INLINE float glm_ivec3_distance(ivec3 a, ivec3 b) { return sqrtf((float)glm_ivec3_distance2(a, b)); } /*! * @brief set each member of dest to greater of vector a and b * * @param[in] a first vector * @param[in] b second vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_maxv(ivec3 a, ivec3 b, ivec3 dest) { dest[0] = a[0] > b[0] ? a[0] : b[0]; dest[1] = a[1] > b[1] ? a[1] : b[1]; dest[2] = a[2] > b[2] ? a[2] : b[2]; } /*! * @brief set each member of dest to lesser of vector a and b * * @param[in] a first vector * @param[in] b second vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_minv(ivec3 a, ivec3 b, ivec3 dest) { dest[0] = a[0] < b[0] ? a[0] : b[0]; dest[1] = a[1] < b[1] ? a[1] : b[1]; dest[2] = a[2] < b[2] ? a[2] : b[2]; } /*! * @brief clamp each member of [v] between minVal and maxVal (inclusive) * * @param[in, out] v vector * @param[in] minVal minimum value * @param[in] maxVal maximum value */ CGLM_INLINE void glm_ivec3_clamp(ivec3 v, int minVal, int maxVal) { if (v[0] < minVal) v[0] = minVal; else if(v[0] > maxVal) v[0] = maxVal; if (v[1] < minVal) v[1] = minVal; else if(v[1] > maxVal) v[1] = maxVal; if (v[2] < minVal) v[2] = minVal; else if(v[2] > maxVal) v[2] = maxVal; } /*! * @brief absolute value of v * * @param[in] v vector * @param[out] dest destination */ CGLM_INLINE void glm_ivec3_abs(ivec3 v, ivec3 dest) { dest[0] = abs(v[0]); dest[1] = abs(v[1]); dest[2] = abs(v[2]); } #endif /* cglm_ivec3_h */