diff options
| author | Jasper van de Gronde <jasper.vandegronde@gmail.com> | 2008-03-21 19:53:10 +0000 |
|---|---|---|
| committer | jaspervdg <jaspervdg@users.sourceforge.net> | 2008-03-21 19:53:10 +0000 |
| commit | 40a243a7a5e67d4f09a82bfbee5babe40ec924b7 (patch) | |
| tree | 5f43830b59a1c448f880a39cd2d23b8cc1058d97 /src/libnr/nr-matrix-test.cpp | |
| parent | Start working toward multiple inheritance (diff) | |
| download | inkscape-40a243a7a5e67d4f09a82bfbee5babe40ec924b7.tar.gz inkscape-40a243a7a5e67d4f09a82bfbee5babe40ec924b7.zip | |
No more NRMatrix or NRPoint.
(bzr r5149)
Diffstat (limited to 'src/libnr/nr-matrix-test.cpp')
| -rw-r--r-- | src/libnr/nr-matrix-test.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libnr/nr-matrix-test.cpp b/src/libnr/nr-matrix-test.cpp index b7f064e48..d0bf25310 100644 --- a/src/libnr/nr-matrix-test.cpp +++ b/src/libnr/nr-matrix-test.cpp @@ -100,14 +100,14 @@ int main(int argc, char *argv[]) } UTEST_TEST("nr_matrix_invert") { - NRMatrix const nr_m_id(m_id); + NR::Matrix const nr_m_id(m_id); Matrix const m_s2(NR::scale(-4.0, 2.0)); - NRMatrix const nr_s2(m_s2); + NR::Matrix const nr_s2(m_s2); Matrix const m_sp5(NR::scale(-.25, .5)); - NRMatrix const nr_sp5(m_sp5); + NR::Matrix const nr_sp5(m_sp5); Matrix const m_t23(t23); - NRMatrix const nr_t23(m_t23); - NRMatrix inv; + NR::Matrix const nr_t23(m_t23); + NR::Matrix inv; nr_matrix_invert(&inv, &nr_m_id); UTEST_ASSERT( Matrix(inv) == m_id ); nr_matrix_invert(&inv, &nr_t23); |
