-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTreeMatrix.h
52 lines (40 loc) · 1.08 KB
/
TreeMatrix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#pragma once
#include <iostream>
//#include "TreeVector.h"
namespace Tree {
template<typename T>
class vec3;
template<typename T>
class mat3x4 {
public:
vec3<T> col1;
vec3<T> col2;
vec3<T> col3;
vec3<T> col4;
mat3x4() {
}
inline void translate(const vec3<T>& p) {
col4 = p;
}
static mat3x4 from_direction(const vec3<T>& dir, const vec3<T>& up = vec3<T>(0,1,0)) {
mat3x4 m;
vec3<T> xaxis = up.cross(dir);
xaxis.normalize();
vec3<T> yaxis = dir.cross(xaxis);
yaxis.normalize();
m.col1 = xaxis;
m.col2 = yaxis;
m.col3 = dir;
return m;
}
};
template <typename T>
std::ostream& operator<<(std::ostream& o, const mat3x4<T>& m) {
o << "mat3x4<" << typeid(T).name() << "> { " << std::endl
<< m.col1.x << ", " << m.col2.x << ", " << m.col3.x << ", " << m.col4.x << ", " << std::endl
<< m.col1.y << ", " << m.col2.y << ", " << m.col3.y << ", " << m.col4.y << ", " << std::endl
<< m.col1.z << ", " << m.col2.z << ", " << m.col3.z << ", " << m.col4.z << std::endl << " } " << std::endl;
return o;
}
typedef mat3x4<float> mat3x4f;
}