ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/mg_primitive.h
Revision: 906
Committed: Mon Nov 13 22:30:18 2017 UTC (7 years, 6 months ago) by couturad
Content type: text/plain
File size: 2002 byte(s)
Log Message:
Nouveau opencascade commit 1

File Contents

# User Rev Content
1 francois 686 //------------------------------------------------------------
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     // mg_element_geometrique.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 � 11H22
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifdef CSG_OCC
24    
25    
26     #ifndef __MGPRIMITIVE_
27     #define __MGPRIMITIVE_
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_construction_geometrique.h"
40    
41 couturad 687 //include Open_Cascade
42     #include <TopoDS_Shape.hxx>
43     #include <BRepPrimAPI_MakeBox.hxx>
44     #include <gp_Pnt.hxx>
45 francois 686
46     class DLLPORTGEOMETRIE MG_PRIMITIVE : public MG_CONSTRUCTION_GEOMETRIQUE
47     {
48     public:
49     MG_PRIMITIVE();
50     MG_PRIMITIVE(unsigned long num);
51     MG_PRIMITIVE(MG_PRIMITIVE& mdd);
52     virtual ~MG_PRIMITIVE();
53    
54 francois 763 virtual void enregistrer(std::ostream& o,double version)=0;
55 francois 686 virtual void construit(void)=0;
56 couturad 906 virtual int get_type_mg_construction_geometrique(void);
57    
58 couturad 687
59     TopoDS_Shape get_forme();
60     void change_forme(TopoDS_Shape m_forme);
61 couturad 772 double get_volume(double eps=1.0e-06);
62 francois 686
63     private:
64 couturad 687
65     protected:
66     TopoDS_Shape forme;
67    
68 francois 686
69    
70     };
71    
72    
73    
74     #endif
75    
76     #endif
77    
78