summaryrefslogtreecommitdiffstats
path: root/src/math/point.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/point.h')
-rw-r--r--src/math/point.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/point.h b/src/math/point.h
index 84be190..d6768c8 100644
--- a/src/math/point.h
+++ b/src/math/point.h
@@ -67,6 +67,12 @@ struct Point
x = y = 0.0f;
}
+ //! Returns the struct cast to \c float* array; use with care!
+ inline float* Array()
+ {
+ return (float*)this;
+ }
+
//! Returns the distance from (0,0) to the point (x,y)
inline float Length()
{