blob: c390de985b75922d4fb00cdfbc938047d795dd23 (
plain)
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
|
/*-----------------------------------------------------------------
LOG
GEM - Graphics Environment for Multimedia
include file for VertexArrays
Copyright (c) 2004 IOhannes m zmoelnig. forum::für::umläute. IEM. zmoelnig@iem.kug.ac.at
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
-----------------------------------------------------------------*/
#ifndef INCLUDE_GEMVERTEX_H_
#define INCLUDE_GEMVERTEX_H_
#include "Base/GemBase.h"
class GEM_EXTERN GemVertex : public GemBase {
protected:
//////////
// Constructor
GemVertex();
~GemVertex();
//////////
// If anything in the object has changed
// especially, if the vertex-array has changed
virtual void setModified();
};
#endif /* INCLUDE_GEMVERTEX_H_ */
|