blob: ffe4a5b447f0611104aab00d80215e3a7e8bbe0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _QV_INDEXED_FACE_SET_
#define _QV_INDEXED_FACE_SET_
#include <QvMFLong.h>
#include <QvSubNode.h>
#define QV_END_FACE_INDEX (-1)
class QvIndexedFaceSet : public QvNode {
QV_NODE_HEADER(QvIndexedFaceSet);
public:
// Fields:
QvMFLong coordIndex; // Coordinate indices
QvMFLong materialIndex; // Material indices
QvMFLong normalIndex; // Surface normal indices
QvMFLong textureCoordIndex; // Texture Coordinate indices
};
#endif /* _QV_INDEXED_FACE_SET_ */
|