From b3109b9851b1be77bddb0dc3dcdd815fe11bd352 Mon Sep 17 00:00:00 2001 From: leo Date: Sun, 19 Feb 2006 23:05:42 +0000 Subject: Fixed wrong multiply in ProjectPoint(). git-svn-id: http://svn.leocad.org/trunk@485 c7d43263-9d01-0410-8a33-9dba5d9f93d6 --- common/algebra.h | 1 + 1 file changed, 1 insertion(+) (limited to 'common/algebra.h') 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]); -- cgit v1.2.3