ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/lc_point.h
Revision: 1022
Committed: Fri Jun 14 16:12:32 2019 UTC (5 years, 11 months ago) by francois
Content type: text/plain
File size: 1891 byte(s)
Log Message:
exportation abaqus pour les polycriataux et exportation des germes de polycristaux

File Contents

# User Rev Content
1 francois 283 //------------------------------------------------------------
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     // lc_point.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 � 11H22
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef __LCPOINT_
24     #define __LCPOINT_
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 "mg_point.h"
38    
39     class DLLPORTGEOMETRIE LC_POINT:public MG_POINT
40     {
41     public:
42     LC_POINT(unsigned long num,double coo[3]);
43     LC_POINT(double coo[3]);
44 francois 576 LC_POINT(double x,double y,double z);
45 francois 283 LC_POINT(LC_POINT& mdd);
46     virtual ~LC_POINT();
47     virtual void evaluer(double *xyz);
48 francois 763 virtual void enregistrer(std::ostream& o,double version);
49 francois 283 virtual int get_type_geometrique(TPL_LISTE_ENTITE<double> &param);
50 francois 1022 virtual void get_param_NURBS(int& indx_premier_ptctr,TPL_LISTE_ENTITE<double> &param) ;
51     virtual int get_type(void);
52 francois 283 private:
53     const double x;
54     const double y;
55     const double z;
56    
57    
58    
59     };
60    
61    
62    
63    
64    
65     #endif
66    
67    
68