adding goat3d to the project
[deeprace] / libs / cgmath / cgmvec3.inl
index e712b5b..0774706 100644 (file)
@@ -6,56 +6,56 @@
  * If you intend to redistribute parts of the code without the LICENSE file
  * replace this paragraph with the full contents of the LICENSE file.
  */
-static inline void cgm_vcons(cgm_vec3 *v, float x, float y, float z)
+static CGM_INLINE void cgm_vcons(cgm_vec3 *v, float x, float y, float z)
 {
        v->x = x;
        v->y = y;
        v->z = z;
 }
 
-static inline void cgm_vadd(cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE void cgm_vadd(cgm_vec3 *a, const cgm_vec3 *b)
 {
        a->x += b->x;
        a->y += b->y;
        a->z += b->z;
 }
 
-static inline void cgm_vadd_scaled(cgm_vec3 *a, const cgm_vec3 *b, float s)
+static CGM_INLINE void cgm_vadd_scaled(cgm_vec3 *a, const cgm_vec3 *b, float s)
 {
        a->x += b->x * s;
        a->y += b->y * s;
        a->z += b->z * s;
 }
 
-static inline void cgm_vsub(cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE void cgm_vsub(cgm_vec3 *a, const cgm_vec3 *b)
 {
        a->x -= b->x;
        a->y -= b->y;
        a->z -= b->z;
 }
 
-static inline void cgm_vsub_scaled(cgm_vec3 *a, const cgm_vec3 *b, float s)
+static CGM_INLINE void cgm_vsub_scaled(cgm_vec3 *a, const cgm_vec3 *b, float s)
 {
        a->x -= b->x * s;
        a->y -= b->y * s;
        a->z -= b->z * s;
 }
 
-static inline void cgm_vmul(cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE void cgm_vmul(cgm_vec3 *a, const cgm_vec3 *b)
 {
        a->x *= b->x;
        a->y *= b->y;
        a->z *= b->z;
 }
 
-static inline void cgm_vscale(cgm_vec3 *v, float s)
+static CGM_INLINE void cgm_vscale(cgm_vec3 *v, float s)
 {
        v->x *= s;
        v->y *= s;
        v->z *= s;
 }
 
-static inline void cgm_vmul_m4v3(cgm_vec3 *v, const float *m)
+static CGM_INLINE void cgm_vmul_m4v3(cgm_vec3 *v, const float *m)
 {
        float x = v->x * m[0] + v->y * m[4] + v->z * m[8] + m[12];
        float y = v->x * m[1] + v->y * m[5] + v->z * m[9] + m[13];
@@ -64,7 +64,7 @@ static inline void cgm_vmul_m4v3(cgm_vec3 *v, const float *m)
        v->y = y;
 }
 
-static inline void cgm_vmul_v3m4(cgm_vec3 *v, const float *m)
+static CGM_INLINE void cgm_vmul_v3m4(cgm_vec3 *v, const float *m)
 {
        float x = v->x * m[0] + v->y * m[1] + v->z * m[2] + m[3];
        float y = v->x * m[4] + v->y * m[5] + v->z * m[6] + m[7];
@@ -73,7 +73,7 @@ static inline void cgm_vmul_v3m4(cgm_vec3 *v, const float *m)
        v->y = y;
 }
 
-static inline void cgm_vmul_m3v3(cgm_vec3 *v, const float *m)
+static CGM_INLINE void cgm_vmul_m3v3(cgm_vec3 *v, const float *m)
 {
        float x = v->x * m[0] + v->y * m[4] + v->z * m[8];
        float y = v->x * m[1] + v->y * m[5] + v->z * m[9];
@@ -82,7 +82,7 @@ static inline void cgm_vmul_m3v3(cgm_vec3 *v, const float *m)
        v->y = y;
 }
 
-static inline void cgm_vmul_v3m3(cgm_vec3 *v, const float *m)
+static CGM_INLINE void cgm_vmul_v3m3(cgm_vec3 *v, const float *m)
 {
        float x = v->x * m[0] + v->y * m[1] + v->z * m[2];
        float y = v->x * m[4] + v->y * m[5] + v->z * m[6];
@@ -91,29 +91,29 @@ static inline void cgm_vmul_v3m3(cgm_vec3 *v, const float *m)
        v->y = y;
 }
 
-static inline float cgm_vdot(const cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE float cgm_vdot(const cgm_vec3 *a, const cgm_vec3 *b)
 {
        return a->x * b->x + a->y * b->y + a->z * b->z;
 }
 
-static inline void cgm_vcross(cgm_vec3 *res, const cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE void cgm_vcross(cgm_vec3 *res, const cgm_vec3 *a, const cgm_vec3 *b)
 {
        res->x = a->y * b->z - a->z * b->y;
        res->y = a->z * b->x - a->x * b->z;
        res->z = a->x * b->y - a->y * b->x;
 }
 
-static inline float cgm_vlength(const cgm_vec3 *v)
+static CGM_INLINE float cgm_vlength(const cgm_vec3 *v)
 {
        return sqrt(v->x * v->x + v->y * v->y + v->z * v->z);
 }
 
-static inline float cgm_vlength_sq(const cgm_vec3 *v)
+static CGM_INLINE float cgm_vlength_sq(const cgm_vec3 *v)
 {
        return v->x * v->x + v->y * v->y + v->z * v->z;
 }
 
-static inline float cgm_vdist(const cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE float cgm_vdist(const cgm_vec3 *a, const cgm_vec3 *b)
 {
        float dx = a->x - b->x;
        float dy = a->y - b->y;
@@ -121,7 +121,7 @@ static inline float cgm_vdist(const cgm_vec3 *a, const cgm_vec3 *b)
        return sqrt(dx * dx + dy * dy + dz * dz);
 }
 
-static inline float cgm_vdist_sq(const cgm_vec3 *a, const cgm_vec3 *b)
+static CGM_INLINE float cgm_vdist_sq(const cgm_vec3 *a, const cgm_vec3 *b)
 {
        float dx = a->x - b->x;
        float dy = a->y - b->y;
@@ -129,7 +129,7 @@ static inline float cgm_vdist_sq(const cgm_vec3 *a, const cgm_vec3 *b)
        return dx * dx + dy * dy + dz * dz;
 }
 
-static inline void cgm_vnormalize(cgm_vec3 *v)
+static CGM_INLINE void cgm_vnormalize(cgm_vec3 *v)
 {
        float len = cgm_vlength(v);
        if(len != 0.0f) {
@@ -140,7 +140,7 @@ static inline void cgm_vnormalize(cgm_vec3 *v)
        }
 }
 
-static inline void cgm_vreflect(cgm_vec3 *v, const cgm_vec3 *n)
+static CGM_INLINE void cgm_vreflect(cgm_vec3 *v, const cgm_vec3 *n)
 {
        float ndotv2 = cgm_vdot(v, n) * 2.0f;
        v->x -= n->x * ndotv2;
@@ -148,7 +148,7 @@ static inline void cgm_vreflect(cgm_vec3 *v, const cgm_vec3 *n)
        v->z -= n->z * ndotv2;
 }
 
-static inline void cgm_vrefract(cgm_vec3 *v, const cgm_vec3 *n, float ior)
+static CGM_INLINE void cgm_vrefract(cgm_vec3 *v, const cgm_vec3 *n, float ior)
 {
        float ndotv = cgm_vdot(v, n);
        float k = 1.0f - ior * ior * (1.0f - ndotv * ndotv);
@@ -162,7 +162,7 @@ static inline void cgm_vrefract(cgm_vec3 *v, const cgm_vec3 *n, float ior)
        }
 }
 
-static inline void cgm_vrotate_quat(cgm_vec3 *v, const cgm_quat *q)
+static CGM_INLINE void cgm_vrotate_quat(cgm_vec3 *v, const cgm_quat *q)
 {
        cgm_quat vq, inv_q = *q, tmp_q = *q;
 
@@ -173,28 +173,28 @@ static inline void cgm_vrotate_quat(cgm_vec3 *v, const cgm_quat *q)
        cgm_vcons(v, tmp_q.x, tmp_q.y, tmp_q.z);
 }
 
-static inline void cgm_vrotate_axis(cgm_vec3 *v, int axis, float angle)
+static CGM_INLINE void cgm_vrotate_axis(cgm_vec3 *v, int axis, float angle)
 {
        float m[16];
        cgm_mrotation_axis(m, axis, angle);
        cgm_vmul_m3v3(v, m);
 }
 
-static inline void cgm_vrotate(cgm_vec3 *v, float angle, float x, float y, float z)
+static CGM_INLINE void cgm_vrotate(cgm_vec3 *v, float angle, float x, float y, float z)
 {
        float m[16];
        cgm_mrotation(m, angle, x, y, z);
        cgm_vmul_m3v3(v, m);
 }
 
-static inline void cgm_vrotate_euler(cgm_vec3 *v, float a, float b, float c, enum cgm_euler_mode mode)
+static CGM_INLINE void cgm_vrotate_euler(cgm_vec3 *v, float a, float b, float c, enum cgm_euler_mode mode)
 {
        float m[16];
        cgm_mrotation_euler(m, a, b, c, mode);
        cgm_vmul_m3v3(v, m);
 }
 
-static inline void cgm_vlerp(cgm_vec3 *res, const cgm_vec3 *a, const cgm_vec3 *b, float t)
+static CGM_INLINE void cgm_vlerp(cgm_vec3 *res, const cgm_vec3 *a, const cgm_vec3 *b, float t)
 {
        res->x = a->x + (b->x - a->x) * t;
        res->y = a->y + (b->y - a->y) * t;