diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-04-02 12:10:32 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-04-02 12:10:32 +0000 |
| commit | 2e39007842e1406e7df0031e425441c29eb060fd (patch) | |
| tree | d14a9495a006491434b1c6d719969de0b403b6f7 /src/transf_mat_3x4.cpp | |
| parent | Change to the new Tango-compliant icon in the few places where the (diff) | |
| download | inkscape-2e39007842e1406e7df0031e425441c29eb060fd.tar.gz inkscape-2e39007842e1406e7df0031e425441c29eb060fd.zip | |
Forgot adding files during last commit
(bzr r5312)
Diffstat (limited to 'src/transf_mat_3x4.cpp')
| -rw-r--r-- | src/transf_mat_3x4.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
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 { |
