1 |
francois |
283 |
//------------------------------------------------------------ |
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 |
|
|
// constantegeo.h |
16 |
|
|
// |
17 |
|
|
//------------------------------------------------------------ |
18 |
|
|
//------------------------------------------------------------ |
19 |
|
|
// COPYRIGHT 2000 |
20 |
|
|
// Version du 02/03/2006 � 11H20 |
21 |
|
|
//------------------------------------------------------------ |
22 |
|
|
//------------------------------------------------------------ |
23 |
|
|
#ifndef _CONSTANTEGEO_ |
24 |
|
|
#define _CONSTANTEGEO_ |
25 |
|
|
|
26 |
|
|
|
27 |
|
|
const int MGCo_PLAN = 2000 ; |
28 |
|
|
const int MGCo_SPHERE = 2001 ; |
29 |
|
|
const int MGCo_TORE = 2002 ; |
30 |
|
|
const int MGCo_CONE = 2003 ; |
31 |
|
|
const int MGCo_NURBS = 2005 ; |
32 |
|
|
const int MGCo_CYLINDRE = 2006 ; |
33 |
|
|
const int MGCo_BSPLINES = 2007 ; |
34 |
|
|
|
35 |
|
|
const int MGCo_LINE = 2500 ; |
36 |
|
|
const int MGCo_CIRCLE = 2501 ; |
37 |
|
|
const int MGCo_ELLIPSE = 2502 ; |
38 |
|
|
const int MGCo_BSPLINE = 2503; |
39 |
|
|
|
40 |
|
|
const int MGCo_POINT = 3000 ; |
41 |
|
|
|
42 |
|
|
#endif |
43 |
|
|
|