ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/vct_courbe.h
Revision: 66
Committed: Wed Mar 19 16:45:26 2008 UTC (17 years, 3 months ago) by souaissa
Content type: text/plain
Original Path: magic/lib/geometrie/geometrie/src/vct_courbe.h
File size: 1092 byte(s)
Log Message:
reorganisation des classes de vectorisation. Situation normalement final pour le doc de khaled

File Contents

# User Rev Content
1 souaissa 66 //---------------------------------------------------------------------------
2    
3     #ifndef vct_courbeH
4     #define vct_courbeH
5     //---------------------------------------------------------------------------
6    
7     #ifdef WINDOWS_VERSION
8     #ifdef BUILT_DLL_GEOMETRIE
9     #define DLLPORTGEOMETRIE __declspec(dllexport)
10     #else
11     #define DLLPORTGEOMETRIE __declspec(dllimport)
12     #endif
13     #else
14     #define DLLPORTGEOMETRIE
15     #endif
16    
17    
18    
19     #include<vector.h>
20     #include "ot_doubleprecision.h"
21     #include "vct_element_geometrique.h"
22     #include <ostream>
23    
24     class DLLPORTGEOMETRIE VCT_COURBE:public VCT_ELEMENT_GEOMETRIQUE
25     {
26     public:
27    
28     VCT_COURBE(class MG_COURBE* elemgeo);
29     VCT_COURBE(VCT_COURBE& mdd);
30     virtual ~VCT_COURBE();
31    
32     virtual void get_vectorisation(vector<double2>& lst);
33     virtual void get_geo_barycentre(double2* xyz);
34     virtual double2 get_inertie_au_centre_de_masse();
35     virtual void enregistrer(std::ostream& o);
36     virtual int get_nb_points();
37     private:
38    
39     TPL_LISTE_ENTITE<double> nurbs_params;
40     int indx_premier_ptctr;
41     int nb_points;
42    
43     };
44    
45    
46    
47     #endif