aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-14 10:29:24 +0100
committerThomas White <taw@physics.org>2010-01-14 10:29:24 +0100
commit1f5167c7b129f029758a92cecd6b037f14dada36 (patch)
treeff5b01d367762e244b9527ed4aac6ffeab2ec511 /src/utils.h
parent2b9f975b8eddd9ea434198f3dca03b5a3950c351 (diff)
Inline angle_between
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h
index 9aa07c8c..081d5a71 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -64,8 +64,6 @@ extern int quaternion_valid(struct quaternion q);
/* --------------------------- Useful functions ----------------------------- */
-extern double angle_between(double x1, double y1, double z1,
- double x2, double y2, double z2);
extern size_t skipspace(const char *s);
extern void chomp(char *s);
extern void progress_bar(int val, int total, const char *text);
@@ -102,6 +100,15 @@ static inline double distance3d(double x1, double y1, double z1,
return modulus(x1-x2, y1-y2, z1-z2);
}
+/* Answer in radians */
+static inline double angle_between(double x1, double y1, double z1,
+ double x2, double y2, double z2)
+{
+ double mod1 = modulus(x1, y1, z1);
+ double mod2 = modulus(x2, y2, z2);
+ return acos( (x1*x2 + y1*y2 + z1*z2) / (mod1*mod2) );
+}
+
/* ----------------------------- Useful macros ------------------------------ */