From 34747fcb6a29ee573cf432611359ef34fe680dec Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 20 Dec 2008 14:53:40 +0000 Subject: added Vector2f distance functions --- src/math/vector2f.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/math/vector2f.h') diff --git a/src/math/vector2f.h b/src/math/vector2f.h index ee2d044..6258d85 100644 --- a/src/math/vector2f.h +++ b/src/math/vector2f.h @@ -109,6 +109,12 @@ private: float coord[2]; }; +/// distance between two vectors +float distance(const Vector2f& first, const Vector2f& second); + +/// distance between two vectors squared +float distancesquared(const Vector2f& first, const Vector2f& second); + } #endif // __INCLUDED_MATH_VECTOR2F_H__ -- cgit v1.2.3