1 /* gph-cmath - C graphics math library
2 * Copyright (C) 2018 John Tsiombikas <nuclear@member.fsf.org>
4 * This program is free software. Feel free to use, modify, and/or redistribute
5 * it under the terms of the MIT/X11 license. See LICENSE for details.
6 * If you intend to redistribute parts of the code without the LICENSE file
7 * replace this paragraph with the full contents of the LICENSE file.
9 static CGM_INLINE void cgm_vcons(cgm_vec3 *v, float x, float y, float z)
16 static CGM_INLINE void cgm_vadd(cgm_vec3 *a, const cgm_vec3 *b)
23 static CGM_INLINE void cgm_vadd_scaled(cgm_vec3 *a, const cgm_vec3 *b, float s)
30 static CGM_INLINE void cgm_vsub(cgm_vec3 *a, const cgm_vec3 *b)
37 static CGM_INLINE void cgm_vsub_scaled(cgm_vec3 *a, const cgm_vec3 *b, float s)
44 static CGM_INLINE void cgm_vmul(cgm_vec3 *a, const cgm_vec3 *b)
51 static CGM_INLINE void cgm_vscale(cgm_vec3 *v, float s)
58 static CGM_INLINE void cgm_vmul_m4v3(cgm_vec3 *v, const float *m)
60 float x = v->x * m[0] + v->y * m[4] + v->z * m[8] + m[12];
61 float y = v->x * m[1] + v->y * m[5] + v->z * m[9] + m[13];
62 v->z = v->x * m[2] + v->y * m[6] + v->z * m[10] + m[14];
67 static CGM_INLINE void cgm_vmul_v3m4(cgm_vec3 *v, const float *m)
69 float x = v->x * m[0] + v->y * m[1] + v->z * m[2] + m[3];
70 float y = v->x * m[4] + v->y * m[5] + v->z * m[6] + m[7];
71 v->z = v->x * m[8] + v->y * m[9] + v->z * m[10] + m[11];
76 static CGM_INLINE void cgm_vmul_m3v3(cgm_vec3 *v, const float *m)
78 float x = v->x * m[0] + v->y * m[4] + v->z * m[8];
79 float y = v->x * m[1] + v->y * m[5] + v->z * m[9];
80 v->z = v->x * m[2] + v->y * m[6] + v->z * m[10];
85 static CGM_INLINE void cgm_vmul_v3m3(cgm_vec3 *v, const float *m)
87 float x = v->x * m[0] + v->y * m[1] + v->z * m[2];
88 float y = v->x * m[4] + v->y * m[5] + v->z * m[6];
89 v->z = v->x * m[8] + v->y * m[9] + v->z * m[10];
94 static CGM_INLINE float cgm_vdot(const cgm_vec3 *a, const cgm_vec3 *b)
96 return a->x * b->x + a->y * b->y + a->z * b->z;
99 static CGM_INLINE void cgm_vcross(cgm_vec3 *res, const cgm_vec3 *a, const cgm_vec3 *b)
101 res->x = a->y * b->z - a->z * b->y;
102 res->y = a->z * b->x - a->x * b->z;
103 res->z = a->x * b->y - a->y * b->x;
106 static CGM_INLINE float cgm_vlength(const cgm_vec3 *v)
108 return sqrt(v->x * v->x + v->y * v->y + v->z * v->z);
111 static CGM_INLINE float cgm_vlength_sq(const cgm_vec3 *v)
113 return v->x * v->x + v->y * v->y + v->z * v->z;
116 static CGM_INLINE float cgm_vdist(const cgm_vec3 *a, const cgm_vec3 *b)
118 float dx = a->x - b->x;
119 float dy = a->y - b->y;
120 float dz = a->z - b->z;
121 return sqrt(dx * dx + dy * dy + dz * dz);
124 static CGM_INLINE float cgm_vdist_sq(const cgm_vec3 *a, const cgm_vec3 *b)
126 float dx = a->x - b->x;
127 float dy = a->y - b->y;
128 float dz = a->z - b->z;
129 return dx * dx + dy * dy + dz * dz;
132 static CGM_INLINE void cgm_vnormalize(cgm_vec3 *v)
134 float len = cgm_vlength(v);
136 float s = 1.0f / len;
143 static CGM_INLINE void cgm_vreflect(cgm_vec3 *v, const cgm_vec3 *n)
145 float ndotv2 = cgm_vdot(v, n) * 2.0f;
146 v->x -= n->x * ndotv2;
147 v->y -= n->y * ndotv2;
148 v->z -= n->z * ndotv2;
151 static CGM_INLINE void cgm_vrefract(cgm_vec3 *v, const cgm_vec3 *n, float ior)
153 float ndotv = cgm_vdot(v, n);
154 float k = 1.0f - ior * ior * (1.0f - ndotv * ndotv);
156 cgm_vreflect(v, n); /* TIR */
158 float sqrt_k = sqrt(k);
159 v->x = ior * v->x - (ior * ndotv + sqrt_k) * n->x;
160 v->y = ior * v->y - (ior * ndotv + sqrt_k) * n->y;
161 v->z = ior * v->z - (ior * ndotv + sqrt_k) * n->z;
165 static CGM_INLINE void cgm_vrotate_quat(cgm_vec3 *v, const cgm_quat *q)
167 cgm_quat vq, inv_q = *q, tmp_q = *q;
169 cgm_qcons(&vq, v->x, v->y, v->z, 0.0f);
171 cgm_qmul(&tmp_q, &vq);
172 cgm_qmul(&tmp_q, &inv_q);
173 cgm_vcons(v, tmp_q.x, tmp_q.y, tmp_q.z);
176 static CGM_INLINE void cgm_vrotate_axis(cgm_vec3 *v, int axis, float angle)
179 cgm_mrotation_axis(m, axis, angle);
183 static CGM_INLINE void cgm_vrotate(cgm_vec3 *v, float angle, float x, float y, float z)
186 cgm_mrotation(m, angle, x, y, z);
190 static CGM_INLINE void cgm_vrotate_euler(cgm_vec3 *v, float a, float b, float c, enum cgm_euler_mode mode)
193 cgm_mrotation_euler(m, a, b, c, mode);
197 static CGM_INLINE void cgm_vlerp(cgm_vec3 *res, const cgm_vec3 *a, const cgm_vec3 *b, float t)
199 res->x = a->x + (b->x - a->x) * t;
200 res->y = a->y + (b->y - a->y) * t;
201 res->z = a->z + (b->z - a->z) * t;