summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-matrix-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnr/nr-matrix-test.cpp')
-rw-r--r--src/libnr/nr-matrix-test.cpp10
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);