Added controller cursor in menu

This commit is contained in:
jancoow
2016-06-21 22:12:08 +02:00
parent 0431e9c230
commit e7163fc07c
10 changed files with 202 additions and 30 deletions
+26
View File
@@ -0,0 +1,26 @@
//
// Created by janco on 6/21/16.
//
#ifndef CRYSTALPOINT_MATRIX_H
#define CRYSTALPOINT_MATRIX_H
class Matrix {
private:
public:
float *data;
Matrix(int i = 4);
~Matrix();
static Matrix rotation(int angle, Vec3f axis);
static Matrix identity(void);
static Matrix translate(Vec3f offset);
Matrix operator * (Matrix m1, Matrix m2);
Vec3f operator * (Matrix m, Vec3f v);
}
#endif //CRYSTALPOINT_MATRIX_H