aboutsummaryrefslogtreecommitdiffstats
path: root/test/vector2d_test.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-05-26 23:43:10 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-05-26 23:43:10 +0100
commit4c16cca26bdae09525c04665b536da98beb4c76f (patch)
tree0a3ba29199ed13aaf34b8e624da08719793d1df4 /test/vector2d_test.cpp
parent89c11e6679346e77ee32eb1343d3cf4e7d429a46 (diff)
downloadYAGE-4c16cca26bdae09525c04665b536da98beb4c76f.tar.gz
YAGE-4c16cca26bdae09525c04665b536da98beb4c76f.zip
Creating matrix
Diffstat (limited to 'test/vector2d_test.cpp')
-rw-r--r--test/vector2d_test.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/vector2d_test.cpp b/test/vector2d_test.cpp
deleted file mode 100644
index 2eb00de4..00000000
--- a/test/vector2d_test.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "vector2d.hpp"
-
-#include <iostream>
-
-int main()
-{
- yage::Vector2D v;
- yage::Vector2D v2(1, 5);
-
- v=v2+2;
-
- std::cout<<v<<'\n';
-
- return 0;
-}