1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/***********************************************************************
FONCTION :
----------
File OpenGl_triedron.h : gestion du triedre non zoomable.
REMARQUES:
----------
HISTORIQUE DES MODIFICATIONS :
--------------------------------
24-10-98 : BGN ; Creation.
************************************************************************/
/*----------------------------------------------------------------------*/
#ifndef __OPENGL_TRIEDRON_H_
#define __OPENGL_TRIEDRON_H_
/*----------------------------------------------------------------------*/
/*
* Includes
*/
#include <GL/gl.h>
#include <OpenGl_tgl_all.hxx>
#include <OpenGl_telem.hxx>
#include <OpenGl_tsm.hxx>
/*----------------------------------------------------------------------*/
/*
* Constantes
*/
/*----------------------------------------------------------------------*/
/*
* Types definis
*/
/*----------------------------------------------------------------------*/
/*
* variables statiques
*/
/*----------------------------------------------------------------------*/
/*
* Prototypes
*/
/*
* initialisation of zbuffer trihedron
*/
extern TStatus call_ztriedron_setup (
float* xcolor,
float* ycolor,
float* zcolor,
float sizeratio,
float axisdiameter,
int nbfacettes
);
/*
* initialisation d'un triedre non zoomable dans la Wks
*/
extern TStatus call_triedron_init (
CALL_DEF_VIEW * aview,
int aPosition,
float r,
float g,
float b,
float aScale,
int asWireframe);
/*
* affichage d'un triedre non zoomable dans la vue aview.
*/
extern TStatus call_triedron_redraw_from_view (CALL_DEF_VIEW * aview);
/*
* affichage d'un triedre non zoomable dans la workstation awsid
*/
extern TStatus call_triedron_redraw_from_wsid (Tint awsid);
/*
* destruction du triedre non zoomable d' une vue.
*/
extern TStatus call_triedron_erase (CALL_DEF_VIEW * aview);
/*
* gestion d'un echo de designation du triedre non zoomable d' une vue.
*/
extern TStatus call_triedron_echo (
CALL_DEF_VIEW * aview,
int aType);
/*----------------------------------------------------------------------*/
#endif /* __OPENGL_TRIEDRON_H_ */
/*----------------------------------------------------------------------*/
|