diff options
Diffstat (limited to 'source/Vertice.h')
-rw-r--r-- | source/Vertice.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/source/Vertice.h b/source/Vertice.h deleted file mode 100644 index c4a591b..0000000 --- a/source/Vertice.h +++ /dev/null @@ -1,14 +0,0 @@ -#include"Vector4f.h"
-class Vertice : public Vector4f
-{
-public:
- float u, v;
- Vertice();
- Vertice(float x_, float y_, float z_, float u_, float v_);
- Vertice(float x_, float y_, float z_, float w_, float u_, float v_);
- void screenspace(int screenWidth, int screenHeight);
- Vertice multiplyMatrix(const Matrix4f& a);
- Vertice& operator= (const Vector4f& a);
- Vertice divideW();
-};
-
|