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_arete.h |
15 |
|
|
//####// |
16 |
|
|
//####//------------------------------------------------------------ |
17 |
|
|
//####//------------------------------------------------------------ |
18 |
|
|
//####// COPYRIGHT 2000-2024 |
19 |
|
|
//####// jeu 13 jun 2024 11:58:54 EDT |
20 |
|
|
//####//------------------------------------------------------------ |
21 |
|
|
//####//------------------------------------------------------------ |
22 |
couturad |
907 |
#include "gestionversion.h" |
23 |
|
|
#ifdef ALL_OCC |
24 |
|
|
#ifndef _OCCARETE_ |
25 |
|
|
#define _OCCARETE_ |
26 |
|
|
|
27 |
|
|
|
28 |
francois |
1158 |
|
29 |
couturad |
907 |
#include "mg_arete.h" |
30 |
|
|
#include "occ_fonction.h" |
31 |
|
|
#include "occ_fonction_v2015.h" |
32 |
|
|
#include "occ_fonction_v2017.h" |
33 |
|
|
#include "TopoDS_Edge.hxx" |
34 |
francois |
1158 |
class OCC_ARETE:public MG_ARETE |
35 |
couturad |
907 |
{ |
36 |
|
|
public: |
37 |
|
|
|
38 |
|
|
OCC_ARETE(std::string idori,unsigned long num,class MG_COSOMMET* mgcosom1,class MG_COSOMMET* mgcosom2,class MG_COURBE* crb,int sens,TopoDS_Edge edge,OCC_FONCTION* occ_fonction); |
39 |
|
|
OCC_ARETE(std::string idori,class MG_COSOMMET* mgcosom1,class MG_COSOMMET* mgcosom2,class MG_COURBE* crb,int sens,TopoDS_Edge edge,OCC_FONCTION* occ_fonction); |
40 |
|
|
OCC_ARETE(std::string idori,unsigned long num,class MG_COURBE* crb,int sens,TopoDS_Edge edge,OCC_FONCTION* occ_fonction); |
41 |
|
|
OCC_ARETE(std::string idori,class MG_COURBE* crb,int sens,TopoDS_Edge edge,OCC_FONCTION* occ_fonction); |
42 |
|
|
OCC_ARETE(OCC_ARETE& mdd); |
43 |
|
|
virtual ~OCC_ARETE(); |
44 |
|
|
TopoDS_Edge get_TopoDS_Edge(void); |
45 |
|
|
void change_TopoDS_Edge(TopoDS_Edge edge); |
46 |
|
|
virtual void enregistrer(std::ostream& o,double version); |
47 |
|
|
protected: |
48 |
|
|
TopoDS_Edge m_edge; |
49 |
|
|
OCC_FONCTION* m_occ_fonction; |
50 |
|
|
}; |
51 |
|
|
|
52 |
|
|
|
53 |
|
|
#endif |
54 |
francois |
1158 |
#endif |