1 |
francois |
1158 |
//####//------------------------------------------------------------ |
2 |
|
|
//####//------------------------------------------------------------ |
3 |
|
|
//####// MAGiC |
4 |
|
|
//####// Jean Christophe Cuilliere et Vincent FRANCOIS |
5 |
|
|
//####// Departement de Genie Mecanique - UQTR |
6 |
|
|
//####//------------------------------------------------------------ |
7 |
|
|
//####// MAGIC est un projet de recherche de l equipe ERICCA |
8 |
|
|
//####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres |
9 |
|
|
//####// http://www.uqtr.ca/ericca |
10 |
|
|
//####// http://www.uqtr.ca/ |
11 |
|
|
//####//------------------------------------------------------------ |
12 |
|
|
//####//------------------------------------------------------------ |
13 |
|
|
//####// |
14 |
|
|
//####// vct_face.h |
15 |
|
|
//####// |
16 |
|
|
//####//------------------------------------------------------------ |
17 |
|
|
//####//------------------------------------------------------------ |
18 |
|
|
//####// COPYRIGHT 2000-2024 |
19 |
|
|
//####// jeu 13 jun 2024 11:58:54 EDT |
20 |
|
|
//####//------------------------------------------------------------ |
21 |
|
|
//####//------------------------------------------------------------ |
22 |
francois |
283 |
|
23 |
|
|
#ifndef vct_faceH |
24 |
|
|
#define vct_faceH |
25 |
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
francois |
1158 |
|
29 |
francois |
283 |
#include <vector> |
30 |
|
|
|
31 |
|
|
#include "vct_surface.h" |
32 |
|
|
#include "vct_arete.h" |
33 |
|
|
#include "vct_courbe.h" |
34 |
|
|
#include "ot_doubleprecision.h" |
35 |
|
|
#include "vct_element_topologique.h" |
36 |
|
|
#include "ot_mathematique.h" |
37 |
|
|
#include "ot_tenseur.h" |
38 |
|
|
#include "vct.h" |
39 |
|
|
|
40 |
francois |
1158 |
class VCT_FACE:public VCT_ELEMENT_TOPOLOGIQUE |
41 |
francois |
283 |
{ |
42 |
|
|
public: |
43 |
|
|
|
44 |
|
|
VCT_FACE (class MG_FACE* face); |
45 |
|
|
VCT_FACE (VCT_FACE& mdd); |
46 |
|
|
virtual ~VCT_FACE(); |
47 |
|
|
|
48 |
|
|
protected: |
49 |
|
|
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
}; |
53 |
|
|
|
54 |
|
|
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
#endif |