MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
stadface.h
Aller à la documentation de ce fichier.
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 //####// stadface.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:53:59 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef _HEADER_STADFACE_
23 #define _HEADER_STADFACE_
24 
25 
26 
27 
28 #include <vector>
29 #include "st_ident.h"
30 
31 
32 
33 
35 {
36 public :
37  ST_ADVANCED_FACE(long LigneCourante,std::string idori,std::vector<long> *face,long surface,int sens);
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;
54 
55 };
56 
57 
58 #endif
ST_GESTIONNAIRE
Definition: st_gestionnaire.h:55
ST_ADVANCED_FACE::nb_face_bound
long nb_face_bound
Definition: stadface.h:51
ST_ADVANCED_FACE::ST_ADVANCED_FACE
ST_ADVANCED_FACE(long LigneCourante, std::string idori, std::vector< long > *face, long surface, int sens)
Definition: stadface.cpp:33
ST_ADVANCED_FACE::get_orientation
virtual int get_orientation(void)
Definition: stadface.cpp:68
ST_ADVANCED_FACE
Definition: stadface.h:34
ST_ADVANCED_FACE::orientation
int orientation
Definition: stadface.h:53
st_ident.h
ST_IDENTIFICATEUR
Definition: st_ident.h:32
ST_ADVANCED_FACE::id_surface
long id_surface
Definition: stadface.h:49
ST_ADVANCED_FACE::get_id_face_outer_bound
virtual long get_id_face_outer_bound(void)
Definition: stadface.cpp:52
ST_ADVANCED_FACE::id_face_bound
long * id_face_bound
Definition: stadface.h:52
ST_ADVANCED_FACE::get_id_face_bound
virtual long get_id_face_bound(long numero)
Definition: stadface.cpp:62
ST_ADVANCED_FACE::get_nb_face_bound
virtual long get_nb_face_bound(void)
Definition: stadface.cpp:57
ST_ADVANCED_FACE::est_util
virtual void est_util(class ST_GESTIONNAIRE *gest)
Definition: stadface.cpp:74
ST_ADVANCED_FACE::~ST_ADVANCED_FACE
~ST_ADVANCED_FACE()
Definition: stadface.cpp:41
ST_ADVANCED_FACE::get_id_surface
virtual long get_id_surface(void)
Definition: stadface.cpp:47
ST_ADVANCED_FACE::id_face_outer_bound
long id_face_outer_bound
Definition: stadface.h:50