ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mtu/src/sld_point.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (11 months, 1 week ago) by francois
Content type: text/plain
File size: 1845 byte(s)
Log Message:
compatibilité Ubuntu 22.04
Suppression des refeences à Windows
Ajout d'une banière

File Contents

# User Rev Content
1 francois 1158 //####//------------------------------------------------------------
2     //####//------------------------------------------------------------
3     //####// MAGiC
4     //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5     //####// Departement de Genie Mecanique - UQTR
6     //####//------------------------------------------------------------
7     //####// MAGIC est un projet de recherche de l equipe ERICCA
8     //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9     //####// http://www.uqtr.ca/ericca
10     //####// http://www.uqtr.ca/
11     //####//------------------------------------------------------------
12     //####//------------------------------------------------------------
13     //####//
14     //####// sld_point.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:55 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22 francois 283 #ifdef BREP_SLD
23    
24    
25     #ifndef __SLDPOINT
26     #define __SLDPOINT
27    
28    
29 francois 1158
30 francois 283 #include "mg_point.h"
31     #include "SldWorks_TLB.h"
32     #include "SwConst_TLB.h"
33     #include <atl\atlmod.h>
34    
35    
36 francois 1158 class SLD_POINT:public MG_POINT
37 francois 283 {
38     public:
39     SLD_POINT(unsigned long num,std::string idvertex,class SLD_FONCTION& fonc);
40     SLD_POINT(std::string idvertex,SLD_FONCTION& fonc);
41     virtual ~SLD_POINT();
42     virtual void evaluer(double *coord);
43    
44 francois 763 virtual void enregistrer(std::ostream& o,double version);
45 francois 283 virtual int get_type_geometrique(TPL_LISTE_ENTITE<double> &param);
46     virtual void get_param_NURBS(int& indx_premier_ptctr,TPL_LISTE_ENTITE<double> &param);
47    
48     private:
49     CComPtr<IVertex> swVertex;
50     SLD_FONCTION& fonction;
51     double xyz[3];
52     std::string idoriginal ;
53    
54    
55     };
56    
57    
58    
59    
60    
61     #endif
62     #endif
63    
64    
65