# HG changeset patch # User John Tsiombikas # Date 1371794949 -10800 # Node ID 87ecd7292c23b2cdb37fb20db71a7a313e6eba93 # Parent ec02798ee83b79ed88c40c4025b8b790d99b3735 removed the unused vec.h file diff -r ec02798ee83b -r 87ecd7292c23 dx11test.vcxproj --- a/dx11test.vcxproj Fri Jun 21 07:42:07 2013 +0300 +++ b/dx11test.vcxproj Fri Jun 21 09:09:09 2013 +0300 @@ -81,9 +81,6 @@ - - - Document diff -r ec02798ee83b -r 87ecd7292c23 dx11test.vcxproj.filters --- a/dx11test.vcxproj.filters Fri Jun 21 07:42:07 2013 +0300 +++ b/dx11test.vcxproj.filters Fri Jun 21 09:09:09 2013 +0300 @@ -20,11 +20,6 @@ - - Header Files - - - diff -r ec02798ee83b -r 87ecd7292c23 src/main.cc --- a/src/main.cc Fri Jun 21 07:42:07 2013 +0300 +++ b/src/main.cc Fri Jun 21 09:09:09 2013 +0300 @@ -4,7 +4,6 @@ #include #include #include -#include "vec.h" struct Vertex { float pos[3]; @@ -339,4 +338,4 @@ return DefWindowProc(win, msg, wparam, lparam); } return 0; -} \ No newline at end of file +} diff -r ec02798ee83b -r 87ecd7292c23 src/vec.h --- a/src/vec.h Fri Jun 21 07:42:07 2013 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -#ifndef VEC_H_ -#define VEC_H_ - -class Vector3 { -public: - float x, y, z; - - Vector3(); - Vector3(float x, float y, float z); -}; - -Vector3::Vector3() -{ - x = y = z = 0.0f; -} - -Vector3::Vector3(float x, float y, float z) -{ - this->x = x; - this->y = y; - this->z = z; -} - -#endif // VEC_H_ \ No newline at end of file