1 |
francois |
283 |
//------------------------------------------------------------ |
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 |
|
|
// stadface.h |
16 |
|
|
// |
17 |
|
|
//------------------------------------------------------------ |
18 |
|
|
//------------------------------------------------------------ |
19 |
|
|
// COPYRIGHT 2000 |
20 |
|
|
// Version du 02/03/2006 � 11H24 |
21 |
|
|
//------------------------------------------------------------ |
22 |
|
|
//------------------------------------------------------------ |
23 |
|
|
#ifndef _HEADER_STADFACE_ |
24 |
|
|
#define _HEADER_STADFACE_ |
25 |
|
|
|
26 |
|
|
#ifdef WINDOWS_VERSION |
27 |
|
|
#ifdef BUILT_DLL_STEPLIB |
28 |
|
|
#define DLLPORTSTEP __declspec(dllexport) |
29 |
|
|
#else |
30 |
|
|
#define DLLPORTSTEP __declspec(dllimport) |
31 |
|
|
#endif |
32 |
|
|
#else |
33 |
|
|
#define DLLPORTSTEP |
34 |
|
|
#endif |
35 |
|
|
|
36 |
|
|
|
37 |
|
|
#include <vector> |
38 |
|
|
#include "st_ident.h" |
39 |
|
|
|
40 |
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
class DLLPORTSTEP ST_ADVANCED_FACE:public ST_IDENTIFICATEUR |
44 |
|
|
{ |
45 |
|
|
public : |
46 |
|
|
ST_ADVANCED_FACE(long LigneCourante,std::string idori,std::vector<long> *face,long surface,int sens); |
47 |
|
|
~ST_ADVANCED_FACE(); |
48 |
|
|
|
49 |
|
|
|
50 |
|
|
virtual long get_id_surface(void) ; |
51 |
|
|
virtual long get_id_face_outer_bound(void) ; |
52 |
|
|
virtual long get_nb_face_bound(void) ; |
53 |
|
|
virtual long get_id_face_bound(long numero) ; |
54 |
|
|
virtual int get_orientation(void) ; |
55 |
|
|
|
56 |
|
|
virtual void est_util(class ST_GESTIONNAIRE* gest); |
57 |
|
|
private: |
58 |
|
|
long id_surface; |
59 |
|
|
long id_face_outer_bound; |
60 |
|
|
long nb_face_bound; |
61 |
|
|
long* id_face_bound; |
62 |
|
|
int orientation; |
63 |
|
|
|
64 |
|
|
}; |
65 |
|
|
|
66 |
|
|
|
67 |
|
|
#endif |