You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
239 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. #include "GMath.h"
  2. int main() {
  3. float m1[] = {
  4. 2, 3, 8, 4,
  5. 6, 0, -3, 8,
  6. -1, 3, 2, 9,
  7. 2, 0, 4, 10
  8. };
  9. GMatrix M1(4, 4, m1);
  10. GMatrix M2(4, 4, m1);
  11. M1.SetInverse();
  12. cout << M1 << endl;
  13. return 0;
  14. }