Open Source Tomb Raider Engine
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

BoundingVolume.cpp 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */
  2. /*================================================================
  3. *
  4. * Project : libHel
  5. * Author : Terry 'Mongoose' Hendrix II
  6. * Website : http://www.westga.edu/~stu7440/
  7. * Email : stu7440@westga.edu
  8. * Object : BoundingVolume
  9. * License : No use w/o permission (C) 2002 Mongoose
  10. * Comments: Bounding volume class for world/vis
  11. * culling/clipping/collision stuff
  12. *
  13. *
  14. * This file was generated using Mongoose's C++
  15. * template generator script. <stu7440@westga.edu>
  16. *
  17. *-- History -------------------------------------------------
  18. *
  19. * 2002.11.27:
  20. * Mongoose - Created
  21. =================================================================*/
  22. #include "BoundingVolume.h"
  23. ////////////////////////////////////////////////////////////
  24. // Constructors
  25. ////////////////////////////////////////////////////////////
  26. BoundingVolume::BoundingVolume()
  27. {
  28. }
  29. BoundingVolume::~BoundingVolume()
  30. {
  31. }
  32. ////////////////////////////////////////////////////////////
  33. // Public Accessors
  34. ////////////////////////////////////////////////////////////
  35. ////////////////////////////////////////////////////////////
  36. // Public Mutators
  37. ////////////////////////////////////////////////////////////
  38. ////////////////////////////////////////////////////////////
  39. // Private Accessors
  40. ////////////////////////////////////////////////////////////
  41. ////////////////////////////////////////////////////////////
  42. // Private Mutators
  43. ////////////////////////////////////////////////////////////
  44. ////////////////////////////////////////////////////////////
  45. // Unit Test code
  46. ////////////////////////////////////////////////////////////
  47. #ifdef UNIT_TEST_BOUNDINGVOLUME
  48. int runBoundingVolumeUnitTest()
  49. {
  50. BoundingVolume vol;
  51. return 0;
  52. }
  53. int main(int argc, char *argv[])
  54. {
  55. printf("[BoundingVolume class test]\n");
  56. runBoundingVolumeUnitTest();
  57. return 0;
  58. }
  59. #endif