From 20118bc43a8f4f669f031621378b87f97817c68a Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 21 Jun 2005 08:06:59 +0000 Subject: [PATCH] comment --- stepmania/src/RageMath.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/RageMath.h b/stepmania/src/RageMath.h index 6bb8e439f9..6c0e833d4f 100644 --- a/stepmania/src/RageMath.h +++ b/stepmania/src/RageMath.h @@ -22,6 +22,7 @@ void RageVec3TransformCoord( RageVector3* pOut, const RageVector3* pV, const Rag void RageVec3TransformNormal( RageVector3* pOut, const RageVector3* pV, const RageMatrix* pM ); void RageVec4TransformCoord( RageVector4* pOut, const RageVector4* pV, const RageMatrix* pM ); void RageMatrixIdentity( RageMatrix* pOut ); +// pOut = pB * pA void RageMatrixMultiply( RageMatrix* pOut, const RageMatrix* pA, const RageMatrix* pB ); void RageMatrixTranslation( RageMatrix* pOut, float x, float y, float z ); void RageMatrixScaling( RageMatrix* pOut, float x, float y, float z );