From eb5cdb04efc9984d0937b65620606f8043dd1831 Mon Sep 17 00:00:00 2001 From: ancarola Date: Wed, 10 Jul 2019 10:24:37 +0200 Subject: Implicit convertion to basic_vec to vec2 or vec3 --- test/matrix_example.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/matrix_example.cpp b/test/matrix_example.cpp index a835ee0..a3f0eac 100644 --- a/test/matrix_example.cpp +++ b/test/matrix_example.cpp @@ -32,7 +32,7 @@ int main(int argc, char *argv[]) { std::cout << "a.td() = \n" << a.t(); // or a.trasposed(); std::cout << std::endl; - // special matrices + // square matrix mm::square_matrix, 2> f {{{2, 3}, {1, 4}}, {{6, 1}, {-3, 4}}}; std::cout << "Square matrix" << std::endl; @@ -50,5 +50,9 @@ int main(int argc, char *argv[]) { std::cout << "I = \n" << identity; std::cout << std::endl; + // vector + + // + return 0; } -- cgit v1.2.1