types.h

changeset 66
12aca5d5a51e
parent 64
ada4679d5bce
child 102
cacd4681ccb4
equal deleted inserted replaced
65:e4f25b44e240 66:12aca5d5a51e
60 60
61 matrix operator* (matrix mOther) { 61 matrix operator* (matrix mOther) {
62 return mult (mOther); 62 return mult (mOther);
63 } 63 }
64 64
65 matrix& operator*= (matrix mOther) {
66 return operator= (mult (mOther));
67 }
68
69 inline double& operator[] (const uint uIndex) { 65 inline double& operator[] (const uint uIndex) {
70 return faValues[uIndex]; 66 return faValues[uIndex];
71 } 67 }
72 68
73 void zero (); 69 void zero ();

mercurial