1 |
|
5 |
//------------------------------------------------------------
|
2 |
|
|
//------------------------------------------------------------
|
3 |
|
|
// MAGiC
|
4 |
|
|
// Jean Christophe Cuillière et Vincent FRANCOIS
|
5 |
|
|
// Département de Génie Mécanique - UQTR
|
6 |
|
|
//------------------------------------------------------------
|
7 |
|
|
// Le projet MAGIC est un projet de recherche du département
|
8 |
|
|
// de génie mécanique de l'Université du Québec à
|
9 |
|
|
// Trois Rivières
|
10 |
|
|
// Les librairies ne peuvent être utilisées sans l'accord
|
11 |
|
|
// des auteurs (contact : francois@uqtr.ca)
|
12 |
|
|
//------------------------------------------------------------
|
13 |
|
|
//------------------------------------------------------------
|
14 |
|
|
//
|
15 |
|
|
// tmaille.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef tmailleH
|
25 |
|
|
#define tmailleH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
//---------------------------------------------------------------------------
|
29 |
|
|
class Thread_maille : public TThread
|
30 |
|
|
{
|
31 |
|
|
private:
|
32 |
|
|
int etat;
|
33 |
|
|
int snb_segment;
|
34 |
|
|
int snb_tri;
|
35 |
|
|
int snb_tetra;
|
36 |
|
|
int type_maillage;
|
37 |
|
|
|
38 |
|
|
protected:
|
39 |
|
|
void __fastcall Execute();
|
40 |
|
|
class TVisuMagicform* form;
|
41 |
|
|
public:
|
42 |
|
|
__fastcall Thread_maille(class TVisuMagicform *f,int type);
|
43 |
|
|
int get_info(long &nb_noeud,long &nb_segment,long &nb_triangle,long &nb_tetra);
|
44 |
|
|
class MG_MAILLAGE *mgmai;
|
45 |
|
|
|
46 |
|
|
|
47 |
|
|
};
|
48 |
|
|
//---------------------------------------------------------------------------
|
49 |
|
|
#endif
|