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 |
|
|
//####// rec_face.h |
15 |
|
|
//####// |
16 |
|
|
//####//------------------------------------------------------------ |
17 |
|
|
//####//------------------------------------------------------------ |
18 |
|
|
//####// COPYRIGHT 2000-2024 |
19 |
|
|
//####// jeu 13 jun 2024 11:58:56 EDT |
20 |
|
|
//####//------------------------------------------------------------ |
21 |
|
|
//####//------------------------------------------------------------ |
22 |
|
5 |
#ifndef Rec_faceH
|
23 |
|
|
#define Rec_faceH
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
#include "mg_maillage.h"
|
27 |
|
|
#include "mg_geometrie.h"
|
28 |
francois |
481 |
#include "rec_brep.h"
|
29 |
|
5 |
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
francois |
1158 |
|
34 |
|
|
class REC_FACE : public REC_BREP
|
35 |
|
5 |
{
|
36 |
|
|
public:
|
37 |
couturad |
740 |
REC_FACE(FEM_MAILLAGE* fem_mai, int Idealise, OCC_FONCTION_RECONSTRUCTION& fonc, int test, int* faces);
|
38 |
|
5 |
|
39 |
|
|
virtual ~REC_FACE();
|
40 |
|
|
|
41 |
louhichi |
211 |
void Reconstruire(MG_FACE* face, double coef);
|
42 |
|
|
void Enregistrer(char *path);
|
43 |
|
5 |
|
44 |
|
|
protected:
|
45 |
|
|
|
46 |
|
|
int testo;
|
47 |
|
|
int* faceso;
|
48 |
|
|
|
49 |
|
|
} ;
|
50 |
|
|
|
51 |
|
|
#endif
|
52 |
|
|
|
53 |
|
|
|