1 |
francois |
283 |
//--------------------------------------------------------------------------- |
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 |
|
|
#include <vector> |
19 |
|
|
|
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 |
|
|
#include "vct.h" |
28 |
|
|
|
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 |
|
|
protected: |
38 |
|
|
|
39 |
|
|
|
40 |
|
|
|
41 |
|
|
}; |
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
#endif |