MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
stfacebound.cpp
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 //####// stfacebound.cpp
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:53:59 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 
23 
24 
25 #include <string.h>
26 #include "stfacebound.h"
27 #include "st_ident.h"
28 #include "st_gestionnaire.h"
29 
30 ST_FACE_BOUND::ST_FACE_BOUND(long LigneCourante,std::string idori,long edge_loop,int sens):ST_IDENTIFICATEUR(LigneCourante,idori),id_edge_loop(edge_loop),orientation(sens)
31 {
32 }
33 
34 
36 {
37  return id_edge_loop;
38 }
40 {
41  return orientation;
42 }
43 
44 
45 
47 {
48  util=true;
50 }
ST_GESTIONNAIRE
Definition: st_gestionnaire.h:55
ST_FACE_BOUND::id_edge_loop
long id_edge_loop
Definition: stfacebound.h:44
stfacebound.h
ST_FACE_BOUND::est_util
virtual void est_util(class ST_GESTIONNAIRE *gest)
Definition: stfacebound.cpp:46
st_gestionnaire.h
st_ident.h
ST_GESTIONNAIRE::lst_edge_loop
TPL_MAP_ENTITE< class ST_EDGE_LOOP * > lst_edge_loop
Definition: st_gestionnaire.h:85
ST_IDENTIFICATEUR
Definition: st_ident.h:32
ST_FACE_BOUND::orientation
int orientation
Definition: stfacebound.h:45
ST_FACE_BOUND::get_orientation
virtual int get_orientation(void)
Definition: stfacebound.cpp:39
TPL_MAP_ENTITE::getid
virtual X getid(unsigned long num)
Definition: tpl_map_entite.h:96
ST_EDGE_LOOP::est_util
virtual void est_util(class ST_GESTIONNAIRE *gest)
Definition: stedgeloop.cpp:57
ST_FACE_BOUND::get_id_edge_loop
virtual long get_id_edge_loop(void)
Definition: stfacebound.cpp:35
ST_IDENTIFICATEUR::util
bool util
Definition: st_ident.h:46
ST_FACE_BOUND::ST_FACE_BOUND
ST_FACE_BOUND(long LigneCourante, std::string idori, long edge_loop, int sens)
Definition: stfacebound.cpp:30