summaryrefslogtreecommitdiff
path: root/common/algebra.h
diff options
context:
space:
mode:
authorleo2006-02-19 23:05:42 +0000
committerleo2006-02-19 23:05:42 +0000
commitb3109b9851b1be77bddb0dc3dcdd815fe11bd352 (patch)
tree28c5bcc0a63f1c8b62ce0636be706c4b77156bc0 /common/algebra.h
parentcf9f6693ab964e660f816c0245365acdfdfec769 (diff)
Fixed wrong multiply in ProjectPoint().
git-svn-id: http://svn.leocad.org/trunk@485 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common/algebra.h')
-rw-r--r--common/algebra.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/algebra.h b/common/algebra.h
index 941dc23..826fe7a 100644
--- a/common/algebra.h
+++ b/common/algebra.h
@@ -584,6 +584,7 @@ protected:
// Other Functions.
Vector3 ProjectPoint(const Vector3& Point, const Matrix44& ModelView, const Matrix44& Projection, const int Viewport[4]);
+void ProjectPoints(Vector3* Points, int NumPoints, const Matrix44& ModelView, const Matrix44& Projection, const int Viewport[4]);
Vector3 UnprojectPoint(const Vector3& Point, const Matrix44& ModelView, const Matrix44& Projection, const int Viewport[4]);
void UnprojectPoints(Vector3* Points, int NumPoints, const Matrix44& ModelView, const Matrix44& Projection, const int Viewport[4]);