ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/sat/src/sat_point.h
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (17 years, 11 months ago)
Content type: text/plain
Original Path: magic/lib/sat/sat/src/sat_point.h
File size: 1846 byte(s)
Log Message:

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     // sat_point.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H24
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef sat_pointH
24     #define sat_pointH
25     //---------------------------------------------------------------------------
26    
27     #ifdef WINDOWS_VERSION
28     #ifdef BUILT_DLL_SATLIB
29     #define DLLPORTSAT __declspec(dllexport)
30     #else
31     #define DLLPORTSAT __declspec(dllimport)
32     #endif
33     #else
34     #define DLLPORTSAT
35     #endif
36    
37     #include "sat_identificateur.h"
38     #include "tpl_liste_entite.h"
39    
40     class DLLPORTSAT SAT_POINT:public SAT_IDENTIFICATEUR
41     {
42     public:
43     SAT_POINT(unsigned long num);
44     SAT_POINT();
45     SAT_POINT(SAT_POINT& mdd);
46     virtual ~SAT_POINT();
47    
48    
49     virtual void evaluer(double *xyz) ;
50     class SAT_ATTRIB* attrib;
51    
52    
53     double coord[3];
54     virtual void SAT_POINT:: get_param_NURBS(TPL_LISTE_ENTITE<double> &param);
55     virtual int get_type_geometrique(TPL_LISTE_ENTITE<double> &param);
56    
57    
58     };
59    
60    
61    
62     #endif