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.

9 lines
165 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #include "GMath.h"
  2. int main() {
  3. GQuater q1(1.0f, 1.0f, 2.0f, 1.0f);
  4. GQuater q2(1.0f/7.0f, -1.0f/7.0f, -2.0f/7.0f, -1.0f/7.0f);
  5. q1 *= q2;
  6. return 0;
  7. }