From 943c381bc6783d35fe183e33398223ba75afee5b Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 25 Jan 2005 19:38:41 +0000 Subject: New math classes. git-svn-id: http://svn.leocad.org/trunk@369 c7d43263-9d01-0410-8a33-9dba5d9f93d6 --- common/algebra.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 common/algebra.cpp (limited to 'common/algebra.cpp') 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; +} + -- cgit v1.2.3