-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomputils.h
40 lines (35 loc) · 1.5 KB
/
computils.h
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
/*
* This file is part of a set of example programs for the Coin library.
* Copyright (C) 2000-2003 by Systems in Motion. All rights reserved.
*
* <URL:http://www.coin3d.org>
*
* This sourcecode can be redistributed and/or modified under the
* terms of the GNU General Public License version 2 as published by
* the Free Software Foundation. See the file COPYING at the root
* directory of the distribution for more details.
*
* As a special exception, all sourcecode of the demo examples can be
* used for any purpose for licensees of the Coin Professional
* Edition License, without the restrictions of the GNU GPL. See our
* web pages for information about how to acquire a Professional Edition
* License.
*
* Systems in Motion, <URL:http://www.sim.no>, <mailto:[email protected]>
*
\**************************************************************************/
/*
* gl3dv - 3D mesh viewer based on COIN3D examples (snapshotviewer)
*
* George Litos ([email protected])
*
\**************************************************************************/
#ifndef __SO_COMPUTILS_H__
#define __SO_COMPUTILS_H__
//--------------------------------------------------------------------------
class SoWinViewer;
void init_extra_libraries(void);
SoNode * get_scene_graph( int argc, char ** argv );
void config_viewer( SoWinViewer * viewer, int argc, char ** argv );
//--------------------------------------------------------------------------
#endif // ! __SO_COMPUTILS_H__