home *** CD-ROM | disk | FTP | other *** search
/ VRML Tools for 3D Cyberspace / VRML_Tools_For_3D_Cyberspace.iso / amber / include / lod.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-01  |  597 b   |  34 lines

  1. //**********************************************************************
  2. //  DIVE Laboratories, Inc.
  3. //  Copyright(c) 1995
  4. //  All rights reserved.
  5. //  FILE:   LOD.HPP
  6. //
  7. //  DESCRIPTION
  8. //  This file provides the function prototypes for the lodClass
  9. //
  10. //  Author: M. Doucet
  11. //
  12. //  Modification History:
  13. //  6/13/95    Created
  14. //
  15. //**********************************************************************
  16. #ifndef _LOD_HPP
  17. #define _LOD_HPP
  18.  
  19. #include "geometry.hpp"
  20.  
  21. class lodClass {
  22.  
  23. public:
  24.  
  25.     double range;
  26.     geometryClass *geo;
  27.  
  28.     lodClass();
  29.     ~lodClass();
  30.  
  31. };
  32.  
  33. #endif
  34.