Line | |
---|
1 | #ifndef HOJA_H
|
---|
2 | #define HOJA_H
|
---|
3 |
|
---|
4 |
|
---|
5 | class Hoja
|
---|
6 | {
|
---|
7 | public :
|
---|
8 | // Variable members
|
---|
9 | long int Vertices[4]; // Array of pointers to vertices
|
---|
10 | float Normal[3];
|
---|
11 | long int Cuantas_hojas;
|
---|
12 | float Centro[3];
|
---|
13 | int hoja_cerca;
|
---|
14 | float coplanar;
|
---|
15 | long int hoja_cop;
|
---|
16 | float dist;
|
---|
17 | bool existe;
|
---|
18 | float criterio;
|
---|
19 | long int hoja_crit;
|
---|
20 |
|
---|
21 | // Identificadores de los triángulos que forman la hoja
|
---|
22 | long int id_triangulo[2];
|
---|
23 |
|
---|
24 | public :
|
---|
25 | // Constructors
|
---|
26 | Hoja (void); // Void constructor
|
---|
27 | Hoja (const Hoja& aHoja); // Copy constructor
|
---|
28 | virtual ~Hoja (void); // Destructor
|
---|
29 | //
|
---|
30 | float Distancia (Hoja&);
|
---|
31 | float Coplanaridad (Hoja&);
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.