This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IndoorMap/mapview/3D/MV3DElement.h
root e5e19779d5 worked on android port
opengl1 -> es
2018-01-31 17:15:11 +01:00

30 lines
442 B
C++

#ifndef MV3DELEMENT_H
#define MV3DELEMENT_H
#include "MapView3D.h"
#include "misc/Renderable3D.h"
/**
* represents one drawable
* element shown within the MapView3D
*/
class MV3DElement : public Renderable3D {
public:
/** dtor */
virtual ~MV3DElement() {;}
public:
/** OLD: repaint me */
//virtual void paintGL() = 0;
/** is this a transparent element? */
virtual bool isTransparent() const = 0;
};
#endif // MV3DELEMENT_H