summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-03-07 05:39:47 -0600
committerepoch <epoch@hacking.allowed.org>2020-03-07 05:39:47 -0600
commit7471f9b93b4e7a5b5f07255fcd994fe560940354 (patch)
tree767eefc05d44392128042d5226b54176687090df /src
parent3ab19cc5fd4e9bccc55366ea62923dcf1f0caa8f (diff)
downloadhackvr-7471f9b93b4e7a5b5f07255fcd994fe560940354.tar.gz
hackvr-7471f9b93b4e7a5b5f07255fcd994fe560940354.zip
some more functions went into math.h
Diffstat (limited to 'src')
-rw-r--r--src/math.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/math.h b/src/math.h
index 7c01c4b..8d058cc 100644
--- a/src/math.h
+++ b/src/math.h
@@ -19,5 +19,9 @@ radians d2r(degrees d);
degrees r2d(radians r);
radians points_to_angle(c2_t p1,c2_t p2);
int between_angles(degrees d,real lower,real upper);
+c3_s_t apply_group_relative(c3_s_t s,c3_group_rot_t *group_rot);
+c3_t c3_add(c3_t p1,c3_t p2);
+real distance3(c3_t p1,c3_t p2);
+void print_point(c3_t p);
#endif