blob: aebc871ea3e47974b193f6e3e2ad79b881af590d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _QV_POINT_SET_
#define _QV_POINT_SET_
#include <QvSFLong.h>
#include <QvSubNode.h>
#define QV_POINT_SET_USE_REST_OF_POINTS (-1)
class QvPointSet : public QvNode {
QV_NODE_HEADER(QvPointSet);
public:
// Fields
QvSFLong startIndex; // Index of 1st coordinate of shape
QvSFLong numPoints; // Number of points to draw
};
#endif /* _QV_POINT_SET_ */
|