ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/fem_triangle3.h
Revision: 253
Committed: Tue Jul 13 19:40:46 2010 UTC (14 years, 10 months ago) by francois
Content type: text/plain
File size: 2161 byte(s)
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# User Rev Content
1 5 //------------------------------------------------------------
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     // mg_triangle3.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H22
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef _FEMTRIANGLE3_
24     #define _FEMTRIANGLE3_
25    
26     #ifdef WINDOWS_VERSION
27     #ifdef BUILT_DLL_GEOMETRIE
28     #define DLLPORTGEOMETRIE __declspec(dllexport)
29     #else
30     #define DLLPORTGEOMETRIE __declspec(dllimport)
31     #endif
32     #else
33     #define DLLPORTGEOMETRIE
34     #endif
35    
36    
37     #include "fem_template_element.h"
38     #include "fem_triangle.h"
39    
40    
41     const unsigned int IDFEM_TRIANGLE3=1203;
42    
43    
44     class DLLPORTGEOMETRIE FEM_TRIANGLE3 : public FEM_TRIANGLE,FEM_TEMPLATE_ELEMENT<3>
45     {
46     public:
47     FEM_TRIANGLE3(unsigned long num,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
48     FEM_TRIANGLE3(class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
49     FEM_TRIANGLE3(FEM_TRIANGLE3& mdd);
50     virtual ~FEM_TRIANGLE3();
51     virtual int get_type_entite(void);
52     virtual int get_nb_fem_noeud(void);
53     virtual FEM_NOEUD* get_fem_noeud(int num);
54     virtual void change_noeud(int num,FEM_NOEUD* noeud);
55     virtual int get_dimension(void);
56     virtual void enregistrer(std::ostream& o);
57     virtual BOITE_3D& get_boite_3D(void);
58     virtual FEM_ELEMENT_MAILLAGE* dupliquer(FEM_MAILLAGE *femmai,long decalage);
59    
60     protected:
61    
62     };
63    
64    
65    
66    
67    
68    
69     #endif
70    
71    
72