1 |
souaissa |
66 |
//---------------------------------------------------------------------------
|
2 |
|
|
|
3 |
|
|
#ifndef vct_faceH
|
4 |
|
|
#define vct_faceH
|
5 |
|
|
//---------------------------------------------------------------------------
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
#ifdef WINDOWS_VERSION
|
9 |
|
|
#ifdef BUILT_DLL_GEOMETRIE
|
10 |
|
|
#define DLLPORTGEOMETRIE __declspec(dllexport)
|
11 |
|
|
#else
|
12 |
|
|
#define DLLPORTGEOMETRIE __declspec(dllimport)
|
13 |
|
|
#endif
|
14 |
|
|
#else
|
15 |
|
|
#define DLLPORTGEOMETRIE
|
16 |
|
|
#endif
|
17 |
|
|
|
18 |
francois |
169 |
#include <vector>
|
19 |
souaissa |
66 |
|
20 |
|
|
#include "vct_surface.h"
|
21 |
|
|
#include "vct_arete.h"
|
22 |
|
|
#include "vct_courbe.h"
|
23 |
|
|
#include "ot_doubleprecision.h"
|
24 |
|
|
#include "vct_element_topologique.h"
|
25 |
|
|
#include "ot_mathematique.h"
|
26 |
|
|
#include "ot_tenseur.h"
|
27 |
souaissa |
69 |
#include "vct.h"
|
28 |
souaissa |
66 |
|
29 |
|
|
class DLLPORTGEOMETRIE VCT_FACE:public VCT_ELEMENT_TOPOLOGIQUE
|
30 |
|
|
{
|
31 |
|
|
public:
|
32 |
|
|
|
33 |
|
|
VCT_FACE (class MG_FACE* face);
|
34 |
|
|
VCT_FACE (VCT_FACE& mdd);
|
35 |
|
|
virtual ~VCT_FACE();
|
36 |
|
|
|
37 |
souaissa |
71 |
protected:
|
38 |
souaissa |
68 |
|
39 |
francois |
253 |
|
40 |
|
|
|
41 |
souaissa |
66 |
};
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
francois |
253 |
|
46 |
souaissa |
66 |
#endif
|