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.

10 lines
165 B

#include "GMath.h"
int main() {
GQuater q1(1.0f, 1.0f, 2.0f, 1.0f);
GQuater q2(1.0f/7.0f, -1.0f/7.0f, -2.0f/7.0f, -1.0f/7.0f);
q1 *= q2;
return 0;
}