/* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */ /*================================================================ * * Project : libHel * Author : Terry 'Mongoose' Hendrix II * Website : http://www.westga.edu/~stu7440/ * Email : stu7440@westga.edu * Object : BoundingVolume * License : No use w/o permission (C) 2002 Mongoose * Comments: Bounding volume class for world/vis * culling/clipping/collision stuff * * * This file was generated using Mongoose's C++ * template generator script. * *-- History ------------------------------------------------- * * 2002.11.27: * Mongoose - Created =================================================================*/ #include "BoundingVolume.h" //////////////////////////////////////////////////////////// // Constructors //////////////////////////////////////////////////////////// BoundingVolume::BoundingVolume() { } BoundingVolume::~BoundingVolume() { } //////////////////////////////////////////////////////////// // Public Accessors //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// // Public Mutators //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// // Private Accessors //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// // Private Mutators //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// // Unit Test code //////////////////////////////////////////////////////////// #ifdef UNIT_TEST_BOUNDINGVOLUME int runBoundingVolumeUnitTest() { BoundingVolume vol; return 0; } int main(int argc, char *argv[]) { printf("[BoundingVolume class test]\n"); runBoundingVolumeUnitTest(); return 0; } #endif