blob: cfcecd7e23196121e1af4c2b64cd1d4e0653f24f (
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_LINE_SET_
#define _QV_INDEXED_LINE_SET_
#include <QvMFLong.h>
#include <QvSubNode.h>
#define QV_END_LINE_INDEX (-1)
class QvIndexedLineSet : public QvNode {
QV_NODE_HEADER(QvIndexedLineSet);
public:
// Fields:
QvMFLong coordIndex; // Coordinate indices
QvMFLong materialIndex; // Material indices
QvMFLong normalIndex; // Surline normal indices
QvMFLong textureCoordIndex; // Texture Coordinate indices
};
#endif /* _QV_INDEXED_LINE_SET_ */
|