Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-03-16 22:36:04 +0000
committerStijn Buys <ingar@osirion.org>2008-03-16 22:36:04 +0000
commitcb52e5bd8da01ab2e7976fcd8bfc34e190265ed5 (patch)
tree3645b53d64ca6e6068537c18efc5c9bab7673e5b /src/math/vector3f.h
parent7d7b9324f1f0db14648fb9fe32256d7942af77b9 (diff)
r_drawradius
Diffstat (limited to 'src/math/vector3f.h')
-rw-r--r--src/math/vector3f.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/vector3f.h b/src/math/vector3f.h
index 5d1fa41..20e47f2 100644
--- a/src/math/vector3f.h
+++ b/src/math/vector3f.h
@@ -148,6 +148,12 @@ const Vector3f crossproduct(Vector3f const & first, Vector3f const & second);
/// vector dot product
float dotproduct(const Vector3f& first, const Vector3f& second);
+/// distance between two vectors
+float distance(const Vector3f& first, const Vector3f& second);
+
+/// distance between two vectors squared
+float distancesquared(const Vector3f& first, const Vector3f& second);
+
} // namespace math
#endif // __INCLUDED_MATH_VECTOR3F_H__