24 lines
494 B
C++
24 lines
494 B
C++
#ifndef FLOORPLANRENDERER_H
|
|
#define FLOORPLANRENDERER_H
|
|
|
|
#include "../misc/Renderable3D.h"
|
|
|
|
class RenderTriangle;
|
|
|
|
class FloorplanRenderer {
|
|
|
|
public:
|
|
|
|
/** ctor */
|
|
FloorplanRenderer();
|
|
|
|
/** render the given grid using GL commands */
|
|
void renderSolid(const RenderSettings& rs, const RenderTriangle& rt, bool wireframe);
|
|
|
|
/** render the given grid using GL commands */
|
|
void renderTransp(const RenderSettings& rs, const RenderTriangle& rt, bool wireframe);
|
|
|
|
};
|
|
|
|
#endif // FLOORPLANRENDERER_H
|