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.

11 lines
267 B

4 years ago
4 years ago
4 years ago
  1. #include "GMath.h"
  2. int main() {
  3. GPlane PI1(GVector3(0.0f, 0.0f, 1.0f), GPoint3(0.0f, 0.0f, 0.0f));
  4. GPlane PI2(GPoint3(1.0,0.0f,0.0f), GPoint3(0.0, 1.0f, 0.0f), GPoint3(0.0, 0.0f, 1.0f));
  5. GPlane PI = PI1;
  6. cout << PI.GetNormal() << endl;
  7. return 0;
  8. }