From 40a243a7a5e67d4f09a82bfbee5babe40ec924b7 Mon Sep 17 00:00:00 2001 From: Jasper van de Gronde Date: Fri, 21 Mar 2008 19:53:10 +0000 Subject: No more NRMatrix or NRPoint. (bzr r5149) --- src/libnr/nr-matrix-test.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/libnr/nr-matrix-test.cpp') 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); -- cgit v1.2.3