ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/sld_point.h
Revision: 283
Committed: Tue Sep 13 21:11:20 2011 UTC (13 years, 8 months ago) by francois
Content type: text/plain
File size: 1982 byte(s)
Log Message:
structure de l'écriture

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     // sld_point.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 � 11H23
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifdef BREP_SLD
24    
25    
26     #ifndef __SLDPOINT
27     #define __SLDPOINT
28    
29     #ifdef WINDOWS_VERSION
30     #ifdef BUILT_DLL_GEOMETRIE
31     #define DLLPORTGEOMETRIE __declspec(dllexport)
32     #else
33     #define DLLPORTGEOMETRIE __declspec(dllimport)
34     #endif
35     #else
36     #define DLLPORTGEOMETRIE
37     #endif
38    
39     #include "mg_point.h"
40     #include "SldWorks_TLB.h"
41     #include "SwConst_TLB.h"
42     #include <atl\atlmod.h>
43    
44    
45     class DLLPORTGEOMETRIE SLD_POINT:public MG_POINT
46     {
47     public:
48     SLD_POINT(unsigned long num,std::string idvertex,class SLD_FONCTION& fonc);
49     SLD_POINT(std::string idvertex,SLD_FONCTION& fonc);
50     virtual ~SLD_POINT();
51     virtual void evaluer(double *coord);
52    
53     virtual void enregistrer(std::ostream& o);
54     virtual int get_type_geometrique(TPL_LISTE_ENTITE<double> &param);
55     virtual void get_param_NURBS(int& indx_premier_ptctr,TPL_LISTE_ENTITE<double> &param);
56    
57     private:
58     CComPtr<IVertex> swVertex;
59     SLD_FONCTION& fonction;
60     double xyz[3];
61     std::string idoriginal ;
62    
63    
64     };
65    
66    
67    
68    
69    
70     #endif
71     #endif
72    
73    
74