1 |
francois |
1156 |
//####//------------------------------------------------------------ |
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 |
|
|
//####// stadface.h |
15 |
|
|
//####// |
16 |
|
|
//####//------------------------------------------------------------ |
17 |
|
|
//####//------------------------------------------------------------ |
18 |
|
|
//####// COPYRIGHT 2000-2024 |
19 |
|
|
//####// jeu 13 jun 2024 11:53:59 EDT |
20 |
|
|
//####//------------------------------------------------------------ |
21 |
|
|
//####//------------------------------------------------------------ |
22 |
francois |
283 |
#ifndef _HEADER_STADFACE_ |
23 |
|
|
#define _HEADER_STADFACE_ |
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
francois |
1156 |
|
28 |
francois |
283 |
#include <vector> |
29 |
|
|
#include "st_ident.h" |
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
francois |
1156 |
class ST_ADVANCED_FACE:public ST_IDENTIFICATEUR |
35 |
francois |
283 |
{ |
36 |
|
|
public : |
37 |
|
|
ST_ADVANCED_FACE(long LigneCourante,std::string idori,std::vector<long> *face,long surface,int sens); |
38 |
|
|
~ST_ADVANCED_FACE(); |
39 |
|
|
|
40 |
|
|
|
41 |
|
|
virtual long get_id_surface(void) ; |
42 |
|
|
virtual long get_id_face_outer_bound(void) ; |
43 |
|
|
virtual long get_nb_face_bound(void) ; |
44 |
|
|
virtual long get_id_face_bound(long numero) ; |
45 |
|
|
virtual int get_orientation(void) ; |
46 |
|
|
|
47 |
|
|
virtual void est_util(class ST_GESTIONNAIRE* gest); |
48 |
|
|
private: |
49 |
|
|
long id_surface; |
50 |
|
|
long id_face_outer_bound; |
51 |
|
|
long nb_face_bound; |
52 |
|
|
long* id_face_bound; |
53 |
|
|
int orientation; |
54 |
|
|
|
55 |
|
|
}; |
56 |
|
|
|
57 |
|
|
|
58 |
|
|
#endif |