From b06ef3bb0dbf34a1777dd8a37ae0a9aab3f63dcb Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 24 May 2001 16:18:46 +0000 Subject: [PATCH] omitted definition for new get_row() --- panda/src/linmath/lmatrix4_src.I | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/panda/src/linmath/lmatrix4_src.I b/panda/src/linmath/lmatrix4_src.I index beff4a01bc..91ffae1810 100644 --- a/panda/src/linmath/lmatrix4_src.I +++ b/panda/src/linmath/lmatrix4_src.I @@ -313,6 +313,14 @@ get_row(int row) const { (*this)(row, 3)); } +INLINE_LINMATH void FLOATNAME(LMatrix4):: +get_row(FLOATNAME(LVecBase4) &result_vec,int row) const { + result_vec._v.v._0 = (*this)(row, 0); + result_vec._v.v._1 = (*this)(row, 1); + result_vec._v.v._2 = (*this)(row, 2); + result_vec._v.v._3 = (*this)(row, 3); +} + //////////////////////////////////////////////////////////////////// // Function: LMatrix4::get_col // Access: Public