Sensor Scol plugin
Multi platform sensors for handled devices
Matrix4.cpp
1
2#include "tools/Matrix4.h"
3#include "tools/Vector3d.h"
4
5const Matrix4 Matrix4::ZERO(
6 0, 0, 0, 0,
7 0, 0, 0, 0,
8 0, 0, 0, 0,
9 0, 0, 0, 0 );
10
11const Matrix4 Matrix4::IDENTITY(
12 1, 0, 0, 0,
13 0, 1, 0, 0,
14 0, 0, 1, 0,
15 0, 0, 0, 1 );
16
17//-----------------------------------------------------------------------