fced94fab3
with a CoordinateSystemNode which reflect the coordinate system of the database. Added support for reading and writing CoordianteSystemNode into the .osg and .ive formats.
16 lines
316 B
C++
16 lines
316 B
C++
#ifndef IVE_COORDINATESYSTEMNODE
|
|
#define IVE_COORDINATESYSTEMNODE 1
|
|
|
|
#include <osg/CoordinateSystemNode>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class CoordinateSystemNode : public osg::CoordinateSystemNode, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|