home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / 3DTOSHI2.ZIP / mpg3d / include / g3dpoly.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-16  |  489 b   |  32 lines

  1.  
  2. // g3dpoly.h
  3. //
  4. // Copyright (c) 1996 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #ifndef __G3DPOLY_H__
  7. #define __G3DPOLY_H__
  8.  
  9. #include "stdgfx.h"
  10. #include "g3dshape.h"
  11. #include "g3dmatrl.h"
  12.  
  13. class G3DPOLY : public G3DSHAPE
  14.   {
  15.     public :
  16.       BOOLEAN Visible;
  17.       LONG Points[3];
  18.       float Intensity;
  19.       FLPVECTOR2D TexCoords[3];
  20.       G3DMATERIAL *Material;
  21.     
  22.       G3DPOLY ();
  23.       virtual ~G3DPOLY ();
  24.   }; // End of G3DPOLY
  25.   
  26. #endif  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.