summaryrefslogtreecommitdiff
path: root/common/algebra.cpp
diff options
context:
space:
mode:
authorleo2005-01-25 19:38:41 +0000
committerleo2005-01-25 19:38:41 +0000
commit943c381bc6783d35fe183e33398223ba75afee5b (patch)
tree4569e516ef67f1d08c2b5ba22eb2d8dd186d9652 /common/algebra.cpp
parent38a23c4dc4875d6502f05f3d6584ce60a65981ca (diff)
New math classes.
git-svn-id: http://svn.leocad.org/trunk@369 c7d43263-9d01-0410-8a33-9dba5d9f93d6
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;
+}
+