@SmallMatrix.h 680 B

123456789101112131415161718192021
  1. /******************************************************************************/
  2. class SmallMatrix : SmallMatrix3 // Matrix stored using 3xVec (3*3xFlt, 3*3*4xByte, 36 bytes)
  3. {
  4. Vec pos;
  5. SmallMatrix3& orn();
  6. C SmallMatrix3& orn()C;
  7. bool operator==(C SmallMatrix &m)C;
  8. bool operator!=(C SmallMatrix &m)C;
  9. void set(Matrix &matrix)C;
  10. Matrix operator()()C;
  11. SmallMatrix();
  12. SmallMatrix(C Matrix &matrix);
  13. };
  14. /******************************************************************************/
  15. /******************************************************************************/
  16. /******************************************************************************/