12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */
- /*================================================================
- *
- * Project : Hel
- * Author : Terry 'Mongoose' Hendrix II
- * Website : http://www.westga.edu/~stu7440/
- * Email : stu7440@westga.edu
- * Object : Quaternion
- * License : No use w/o permission (C) 2002 Mongoose
- * Comments: Quaternion now in C++ class form fresh from the grove
- *
- *
- * This file was generated using Mongoose's C++
- * template generator script. <stu7440@westga.edu>
- *
- *-- History -------------------------------------------------
- *
- * 2002.12.16:
- * Mongoose - Created, based on mtk3d ( freyja )
- =================================================================*/
-
- #include <stdio.h>
- #include <math.h>
-
- #include <Quaternion.h>
-
- int runQuaternionUnitTest(int argc, char *argv[])
- {
- //! \todo Implement Quaternion Unit Tests!
- printf("Not implemented!\n");
- return 0;
- }
-
-
- int main(int argc, char *argv[])
- {
- printf("[Quaternion class test]\n");
-
- runQuaternionUnitTest(argc, argv);
-
- return 0;
- }
|