summaryrefslogtreecommitdiff
path: root/common/algebra.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/algebra.cpp')
-rw-r--r--common/algebra.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/algebra.cpp b/common/algebra.cpp
new file mode 100644
index 0000000..e4e3770
--- /dev/null
+++ b/common/algebra.cpp
@@ -0,0 +1,14 @@
+//
+// Math and Linear Algebra stuff.
+//
+
+#include "algebra.h"
+
+// ============================================================================
+// Linear Algebra functions.
+
+float DistancePointSegmentSquared(const Point3& Pt, const Point3& SegStart, const Point3& SegEnd)
+{
+ return 0;
+}
+