A simple class to handle 3x3 matrices The aim of this class is to be able to manipulate 3x3 matrices and 3D vectors as naturally as possible and make calculations readable. For that reason, the operators +, -, * are overloaded. (Reading a = a + b*2 - c is much easier to read than a = Sub(Add(a, Mul(b,2)),c) )