home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 February
/
Chip_2001-02_cd1.bin
/
bonus
/
demos
/
CS
/
exp
/
SOURCES
/
GLENGINE
/
coordinate.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-07-29
|
350b
|
18 lines
#ifndef __OGL2_COORDINATE_SYSTEMS__
#define __OGL2_COORDINATE_SYSTEMS__
class CoordinateSystem {
public:
virtual void Apply (double time=0.0) = 0;
};
template <class __mtype>
class DynamicMatrixCoordinateSystem : public CoordinateSystem {
__mtype M;
Vector3f pivot;
public:
virtual void Apply (double time=0.0);
};
#endif