summaryrefslogtreecommitdiff
path: root/common/algebra.cpp
blob: e4e3770111fa35d9a0870ca24f284dbe18906a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}