MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
m3d_noeud.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 //####// m3d_noeud.cpp
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:55 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 
23 
24 #include "gestionversion.h"
25 
26 
27 #include "m3d_noeud.h"
28 #include "mg_definition.h"
29 
30 
31 
32 
33 
34 
35 M3D_NOEUD::M3D_NOEUD(unsigned long num,MG_ELEMENT_TOPOLOGIQUE* topo,double xx,double yy,double zz,int origine):MG_NOEUD(num,topo,xx,yy,zz,origine),etat(MAGIC::MAILLEURFRONTALETAT::ACTIF)
36 {
37 }
38 
39 M3D_NOEUD::M3D_NOEUD(MG_ELEMENT_TOPOLOGIQUE* topo,double xx,double yy,double zz,int origine):MG_NOEUD(topo,xx,yy,zz,origine),etat(MAGIC::MAILLEURFRONTALETAT::ACTIF)
40 {
41 }
42 
43 
44 M3D_NOEUD::M3D_NOEUD(M3D_NOEUD& mdd):MG_NOEUD(mdd),etat(mdd.etat)
45 {
46 }
47 
48 
50 {
51 }
52 
53 
55 {
57 }
58 
59 
61 {
63 }
64 
66 {
68 }
70 {
72 }
73 
75 {
76 
77  return etat;
78 }
79 void M3D_NOEUD::enregistrer(std::ostream& o,double version)
80 {
82 }
virtual void etat_inactif(void)
Definition: m3d_noeud.cpp:65
int etat
Definition: m3d_noeud.h:50
virtual ~M3D_NOEUD()
Definition: m3d_noeud.cpp:49
virtual void enregistrer(std::ostream &o, double version)
Definition: m3d_noeud.cpp:79
virtual int get_type_entite()
Definition: m3d_noeud.cpp:54
virtual void etat_actif(void)
Definition: m3d_noeud.cpp:69
M3D_NOEUD(unsigned long num, MG_ELEMENT_TOPOLOGIQUE *topo, double xx, double yy, double zz, int origine)
Definition: m3d_noeud.cpp:35
virtual void etat_detruit(void)
Definition: m3d_noeud.cpp:60
virtual int get_etat(void)
Definition: m3d_noeud.cpp:74
virtual void enregistrer(std::ostream &o, double version)
Definition: mg_noeud.cpp:241
const unsigned int ACTIF
Definition: const.h:29