-
Notifications
You must be signed in to change notification settings - Fork 1
/
iritSkel.h
executable file
·35 lines (28 loc) · 1.11 KB
/
iritSkel.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
/*****************************************************************************
* Skeleton for an interface to a parser to read IRIT data files. *
******************************************************************************
* Written by Amit Mano November 2008*
******************************************************************************/
#ifndef IRIT_SKEL_H
#define IRIT_SKEL_H
#include <stdlib.h>
#include "irit_sm.h"
#include "iritprsr.h"
#include "attribut.h"
#include "allocate.h"
#include "ip_cnvrt.h"
#include "symb_lib.h"
#include "vec4.h"
#include "line.h"
#include <vector>
#include "polygon.h"
#include "model.h"
extern std::vector<model> models;
bool CGSkelProcessIritDataFiles(CString &FileNames, int NumFiles);
void CGSkelDumpOneTraversedObject(IPObjectStruct *PObj, IrtHmgnMatType Mat);
int CGSkelGetObjectColor(IPObjectStruct *PObj, double RGB[3]);
const char *CGSkelGetObjectTexture(IPObjectStruct *PObj);
const char *CGSkelGetObjectPTexture(IPObjectStruct *PObj);
int CGSkelGetObjectTransp(IPObjectStruct *PObj, double *Transp);
bool CGSkelStoreData(IPObjectStruct *PObj);
#endif // IRIT_SKEL_H