home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Snippets / QD3D Juggler / Juggler Sources / C4BoxMaker.h < prev    next >
Encoding:
Text File  |  1995-12-27  |  433 b   |  23 lines  |  [TEXT/CWIE]

  1. //
  2. //    C4BoxMaker.h
  3. //
  4. //    class C4BoxMaker
  5. //    Class for constructing a QD3D model consisting of 4 boxes
  6. //    with colored sides.
  7. //
  8. //    Based on the "Start Here" sample code from Apple.
  9. //
  10. //    by James Jennings
  11. //    Started November 22, 1995
  12. //
  13.  
  14. #pragma once
  15.  
  16. #include "CObjectMaker.h"
  17.  
  18. class C4BoxMaker : public CObjectMaker<TQ3GroupObject> {
  19. public:
  20.      virtual    void    Make();
  21.             void    AddObjectAt(TQ3Object theObject, TQ3Vector3D *where);
  22. };
  23.