home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / 3DTOSHI2.ZIP / mpg3d / source / G3dcam.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-16  |  490 b   |  25 lines

  1.  
  2. // g3dcam.cpp
  3. //
  4. // Copyright (c) 1996 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #include "stdgfx.h"
  7. #include "g3dcam.h"
  8.  
  9. G3DCAMERA::G3DCAMERA () : G3DOBJECT ()
  10.   {
  11.   } // End of Constructor for G3DCAMERA
  12.  
  13. G3DCAMERA::~G3DCAMERA ()
  14.   {
  15.   } // End of Destructor for G3DCAMERA
  16.   
  17. VOID G3DCAMERA::SetPosition ( float x, float y, float z )
  18.   {
  19.     G3DOBJECT::SetPosition ( (float)0, (float)0, (float)0 );
  20.     Move ( x, y, z );
  21.   } // End of SetPosition for G3DCAMERA 
  22.  
  23.  
  24.  
  25.