blob: 3a9ad631ceb41eddf55c1a47711ba153d5812be3 (
plain)
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
|
/***********************************************************************
FONCTION :
----------
File OpenGl_togl_structure_exploration :
REMARQUES:
----------
HISTORIQUE DES MODIFICATIONS :
--------------------------------
xx-xx-xx : xxx ; Creation.
11-03-96 : FMN ; Correction warning compilation
01-04-96 : CAL ; Integration MINSK portage WNT
************************************************************************/
/*----------------------------------------------------------------------*/
/*
* Includes
*/
#include <OpenGl_tgl_all.hxx>
#include <InterfaceGraphic_Graphic3d.hxx>
#include <OpenGl_tgl.hxx>
#include <OpenGl_tgl_subrs.hxx>
void EXPORT
call_togl_structure_exploration
(
long Id,
long LabelBegin,
long LabelEnd
)
{
Tint type;
CALL_DEF_POINT pt;
CALL_DEF_NORMAL npt, nfa;
CALL_DEF_COLOR cpt;
call_subr_structure_exploration (Id, LabelBegin, LabelEnd, 0, &type, &pt, &npt, &cpt, &nfa);
return;
}
|