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.
11 static inline float cgm_deg_to_rad(float deg)
13 return M_PI * deg / 180.0f;
16 static inline float cgm_rad_to_deg(float rad)
18 return 180.0f * rad / M_PI;
21 static inline float cgm_smoothstep(float a, float b, float x)
23 if(x < a) return 0.0f;
24 if(x >= b) return 1.0f;
26 x = (x - a) / (b - a);
27 return x * x * (3.0f - 2.0f * x);
30 static inline float cgm_lerp(float a, float b, float t)
32 return a + (b - a) * t;
35 static inline float cgm_bezier(float a, float b, float c, float d, float t)
37 float omt, omt3, t3, f;
40 omt3 = omt * omt * omt;
43 return (a * omt3) + (b * f * omt) + (c * f * t) + (d * t3);
46 static inline float cgm_bspline(float a, float b, float c, float d, float t)
48 static const float mat[] = {
57 cgm_wcons(&qfact, tsq * t, tsq, t, 1.0f);
58 cgm_wcons(&tmp, a, b, c, d);
59 cgm_wmul_m4v4(&tmp, mat);
60 cgm_wscale(&tmp, 1.0f / 6.0f);
61 return cgm_wdot(&tmp, &qfact);
64 static inline float cgm_spline(float a, float b, float c, float d, float t)
66 static const float mat[] = {
75 cgm_wcons(&qfact, tsq * t, tsq, t, 1.0f);
76 cgm_wcons(&tmp, a, b, c, d);
77 cgm_wmul_m4v4(&tmp, mat);
78 cgm_wscale(&tmp, 1.0f / 6.0f);
79 return cgm_wdot(&tmp, &qfact);
82 static inline void cgm_discrand(cgm_vec3 *pt, float rad)
84 float theta = 2.0f * M_PI * (float)rand() / RAND_MAX;
85 float r = sqrt((float)rand() / RAND_MAX) * rad;
86 pt->x = cos(theta) * r;
87 pt->y = sin(theta) * r;
91 static inline void cgm_sphrand(cgm_vec3 *pt, float rad)
93 float u, v, theta, phi;
95 u = (float)rand() / RAND_MAX;
96 v = (float)rand() / RAND_MAX;
98 theta = 2.0f * M_PI * u;
99 phi = acos(2.0f * v - 1.0f);
101 pt->x = cos(theta) * sin(phi) * rad;
102 pt->y = sin(theta) * sin(phi) * rad;
103 pt->z = cos(phi) * rad;
106 static inline void cgm_unproject(cgm_vec3 *res, const cgm_vec3 *norm_scrpos,
107 const float *inv_viewproj)
111 pos.x = 2.0f * norm_scrpos->x - 1.0f;
112 pos.y = 2.0f * norm_scrpos->y - 1.0f;
113 pos.z = 2.0f * norm_scrpos->z - 1.0f;
116 cgm_wmul_m4v4(&pos, inv_viewproj);
118 res->x = pos.x / pos.w;
119 res->y = pos.y / pos.w;
120 res->z = pos.z / pos.w;
123 static inline void cgm_glu_unproject(float winx, float winy, float winz,
124 const float *view, const float *proj, const int *vp,
125 float *objx, float *objy, float *objz)
130 cgm_mcopy(inv_pv, proj);
131 cgm_mmul(inv_pv, view);
133 npos.x = (winx - vp[0]) / vp[2];
134 npos.y = (winy - vp[1]) / vp[4];
137 cgm_unproject(&res, &npos, inv_pv);
144 static inline void cgm_pick_ray(cgm_ray *ray, float nx, float ny,
145 const float *viewmat, const float *projmat)
147 cgm_vec3 npos, farpt;
150 cgm_mcopy(inv_pv, projmat);
151 cgm_mmul(inv_pv, viewmat);
153 cgm_vcons(&npos, nx, ny, 0.0f);
154 cgm_unproject(&ray->origin, &npos, inv_pv);
156 cgm_unproject(&farpt, &npos, inv_pv);
158 ray->dir.x = farpt.x - ray->origin.x;
159 ray->dir.y = farpt.y - ray->origin.y;
160 ray->dir.z = farpt.z - ray->origin.z;
163 static inline void cgm_raypos(cgm_vec3 *p, const cgm_ray *ray, float t)
165 p->x = ray->origin.x + ray->dir.x * t;
166 p->y = ray->origin.y + ray->dir.y * t;
167 p->z = ray->origin.z + ray->dir.z * t;
170 static inline void cgm_bary(cgm_vec3 *bary, const cgm_vec3 *a,
171 const cgm_vec3 *b, const cgm_vec3 *c, const cgm_vec3 *pt)
173 float d00, d01, d11, d20, d21, denom;
174 cgm_vec3 v0 = *b, v1 = *c, v2 = *pt;
180 d00 = cgm_vdot(&v0, &v0);
181 d01 = cgm_vdot(&v0, &v1);
182 d11 = cgm_vdot(&v1, &v1);
183 d20 = cgm_vdot(&v2, &v0);
184 d21 = cgm_vdot(&v2, &v1);
185 denom = d00 * d11 - d01 * d01;
187 bary->y = (d11 * d20 - d01 * d21) / denom;
188 bary->z = (d00 * d21 - d01 * d20) / denom;
189 bary->x = 1.0f - bary->y - bary->z;
192 static inline void cgm_uvec_to_sph(float *theta, float *phi, const cgm_vec3 *v)
194 *theta = atan2(v->z, v->x);
198 static inline void cgm_sph_to_uvec(cgm_vec3 *v, float theta, float phi)
200 v->x = sin(theta) * cos(phi);
202 v->z = cos(theta) * cos(phi);