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
long nb_face_bound
Definition: stadface.h:51
virtual long get_nb_face_bound(void)
Definition: stadface.cpp:57
long * id_face_bound
Definition: stadface.h:52
long id_face_outer_bound
Definition: stadface.h:50
virtual long get_id_face_outer_bound(void)
Definition: stadface.cpp:52
virtual void est_util(class ST_GESTIONNAIRE *gest)
Definition: stadface.cpp:74
ST_ADVANCED_FACE(long LigneCourante, std::string idori, std::vector< long > *face, long surface, int sens)
Definition: stadface.cpp:33
virtual long get_id_surface(void)
Definition: stadface.cpp:47
virtual long get_id_face_bound(long numero)
Definition: stadface.cpp:62
virtual int get_orientation(void)
Definition: stadface.cpp:68