1 |
//####//------------------------------------------------------------ |
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 |
//####// mailleur0d.h |
15 |
//####// |
16 |
//####//------------------------------------------------------------ |
17 |
//####//------------------------------------------------------------ |
18 |
//####// COPYRIGHT 2000-2024 |
19 |
//####// jeu 13 jun 2024 11:58:55 EDT |
20 |
//####//------------------------------------------------------------ |
21 |
//####//------------------------------------------------------------ |
22 |
#ifndef _MAILLEUR0D_ |
23 |
#define _MAILLEUR0D_ |
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
#include "mg_maillage.h" |
30 |
#include "mg_geometrie.h" |
31 |
#include "mg_sommet.h" |
32 |
#include "mailleur.h" |
33 |
|
34 |
class MAILLEUR0D:public MAILLEUR |
35 |
{ |
36 |
public : |
37 |
MAILLEUR0D(MG_MAILLAGE* mgmai,MG_GEOMETRIE *mggeo,MG_SOMMET* mgsom=NULL); |
38 |
~MAILLEUR0D(); |
39 |
|
40 |
int maille(MG_GROUPE_TOPOLOGIQUE* mggt=NULL); |
41 |
int maille(MG_SOMMET* mgsom); |
42 |
void adapte(void); |
43 |
void adapte(MG_SOMMET* mgsom); |
44 |
|
45 |
private : |
46 |
MG_MAILLAGE* mg_maillage; |
47 |
MG_GEOMETRIE* mg_geometrie; |
48 |
MG_SOMMET* mg_sommet; |
49 |
|
50 |
|
51 |
|
52 |
}; |
53 |
|
54 |
|
55 |
|
56 |
|
57 |
|
58 |
|
59 |
#endif |