Open Source Tomb Raider Engine
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.

Quaternion.cpp 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */
  2. /*================================================================
  3. *
  4. * Project : Hel
  5. * Author : Terry 'Mongoose' Hendrix II
  6. * Website : http://www.westga.edu/~stu7440/
  7. * Email : stu7440@westga.edu
  8. * Object : Quaternion
  9. * License : No use w/o permission (C) 2002 Mongoose
  10. * Comments: Quaternion now in C++ class form fresh from the grove
  11. *
  12. *
  13. * This file was generated using Mongoose's C++
  14. * template generator script. <stu7440@westga.edu>
  15. *
  16. *-- History -------------------------------------------------
  17. *
  18. * 2002.12.16:
  19. * Mongoose - Created, based on mtk3d ( freyja )
  20. =================================================================*/
  21. #include <stdio.h>
  22. #include <math.h>
  23. #include <Quaternion.h>
  24. int runQuaternionUnitTest(int argc, char *argv[])
  25. {
  26. //! \todo Implement Quaternion Unit Tests!
  27. printf("Not implemented!\n");
  28. return 0;
  29. }
  30. int main(int argc, char *argv[])
  31. {
  32. printf("[Quaternion class test]\n");
  33. runQuaternionUnitTest(argc, argv);
  34. return 0;
  35. }