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 |
|
|
//####// occ_face.h |
15 |
|
|
//####// |
16 |
|
|
//####//------------------------------------------------------------ |
17 |
|
|
//####//------------------------------------------------------------ |
18 |
|
|
//####// COPYRIGHT 2000-2024 |
19 |
|
|
//####// jeu 13 jun 2024 11:58:55 EDT |
20 |
|
|
//####//------------------------------------------------------------ |
21 |
|
|
//####//------------------------------------------------------------ |
22 |
couturad |
907 |
#include "gestionversion.h" |
23 |
|
|
#ifdef ALL_OCC |
24 |
|
|
#ifndef _OCCFACE_ |
25 |
|
|
#define _OCCFACE_ |
26 |
|
|
|
27 |
|
|
|
28 |
francois |
1158 |
|
29 |
couturad |
907 |
#include "mg_face.h" |
30 |
|
|
#include "occ_fonction.h" |
31 |
|
|
#include "occ_fonction_v2015.h" |
32 |
|
|
#include "occ_fonction_v2017.h" |
33 |
|
|
#include "TopoDS_Face.hxx" |
34 |
francois |
1158 |
class OCC_FACE:public MG_FACE |
35 |
couturad |
907 |
{ |
36 |
|
|
public: |
37 |
|
|
|
38 |
|
|
OCC_FACE(std::string idori,unsigned long num,MG_SURFACE* srf,int sens,TopoDS_Face face,OCC_FONCTION* occ_fonction); |
39 |
|
|
OCC_FACE(std::string idori,MG_SURFACE* srf,int sens,TopoDS_Face face,OCC_FONCTION* occ_fonction); |
40 |
|
|
OCC_FACE(OCC_FACE& mdd); |
41 |
|
|
virtual ~OCC_FACE(); |
42 |
|
|
TopoDS_Face get_TopoDS_Face(void); |
43 |
|
|
void change_TopoDS_Face(TopoDS_Face face); |
44 |
|
|
virtual void enregistrer(std::ostream& o,double version); |
45 |
|
|
protected: |
46 |
|
|
TopoDS_Face m_face; |
47 |
|
|
OCC_FONCTION* m_occ_fonction; |
48 |
|
|
}; |
49 |
|
|
|
50 |
|
|
|
51 |
|
|
#endif |
52 |
francois |
1158 |
#endif |