From 2e39007842e1406e7df0031e425441c29eb060fd Mon Sep 17 00:00:00 2001 From: Maximilian Albert Date: Wed, 2 Apr 2008 12:10:32 +0000 Subject: Forgot adding files during last commit (bzr r5312) --- src/transf_mat_3x4.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/transf_mat_3x4.cpp') diff --git a/src/transf_mat_3x4.cpp b/src/transf_mat_3x4.cpp index a624fb163..ec03b0de6 100644 --- a/src/transf_mat_3x4.cpp +++ b/src/transf_mat_3x4.cpp @@ -165,6 +165,14 @@ TransfMat3x4::operator*=(NR::Matrix const &A) { return *this; } +void +TransfMat3x4::copy_tmat(double rhs[3][4]) { + for (int i = 0; i < 3; ++i) { + for (int j = 0; j < 4; ++j) { + rhs[i][j] = tmat[i][j]; + } + } +} void TransfMat3x4::print () const { -- cgit v1.2.3