source: GTP/trunk/Lib/Geom/shared/GTGeometry/include/hoja.h @ 832

Revision 832, 436 bytes checked in by gumbau, 18 years ago (diff)
Line 
1#ifndef HOJA_H
2#define HOJA_H
3
4
5class Hoja
6{
7        public :
8                // Variable members
9        int  Vert_Hoja[4];// Array of pointers to vertices
10                float  Normal[3];
11                float  Cuantas_hojas;
12                int padre;
13                int hijoi;
14                int hijod;
15                int visible;
16                int raiz;
17       
18               
19        public :
20                // Constructors
21                Hoja (void); // Void constructor
22                Hoja (const Hoja& aHoja); // Copy constructor
23                virtual ~Hoja (void); // Destructor
24
25
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.