1 |
|
5 |
//------------------------------------------------------------
|
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 |
|
|
// sat_coedge.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H24
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
#ifndef sat_COEDGEH
|
24 |
|
|
#define sat_COEDGEH
|
25 |
|
|
//---------------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
#include "sat_identificateur.h"
|
28 |
|
|
#ifdef WINDOWS_VERSION
|
29 |
|
|
#ifdef BUILT_DLL_SATLIB
|
30 |
|
|
#define DLLPORTSAT __declspec(dllexport)
|
31 |
|
|
#else
|
32 |
|
|
#define DLLPORTSAT __declspec(dllimport)
|
33 |
|
|
#endif
|
34 |
|
|
#else
|
35 |
|
|
#define DLLPORTSAT
|
36 |
|
|
#endif
|
37 |
|
|
|
38 |
|
|
class DLLPORTSAT SAT_COEDGE:public SAT_IDENTIFICATEUR
|
39 |
|
|
{
|
40 |
|
|
public:
|
41 |
|
|
SAT_COEDGE(unsigned long num);
|
42 |
|
|
SAT_COEDGE();
|
43 |
|
|
virtual ~SAT_COEDGE();
|
44 |
|
|
|
45 |
|
|
class SAT_ATTRIB* attrib;
|
46 |
|
|
class SAT_COEDGE* next_coedge;
|
47 |
|
|
class SAT_COEDGE* previous_coedge;
|
48 |
|
|
class SAT_COEDGE* partner_coedge;
|
49 |
|
|
class SAT_EDGE* edge;
|
50 |
|
|
class SAT_LOOP* owning_loop;
|
51 |
|
|
class SAT_PCURVE* pcurve;
|
52 |
|
|
int sense;
|
53 |
|
|
};
|
54 |
|
|
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
|
58 |
|
|
#endif
|