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/misc/Handrail.h
kazu 3b62f23c0e worked on 3D display
some ui changes
refactoring
new icons
2018-02-03 23:30:55 +01:00

26 lines
369 B
C++

#ifndef HANDRAIL_H
#define HANDRAIL_H
#include "Renderable3D.h"
#include <Indoor/geo/Point2.h>
class Handrail : public Renderable3D {
private:
Point2 from;
Point2 to;
float atHeight;
float height;
public:
Handrail(const Point2 from, const Point2 to, float atHeight, float height);
void render(const RenderSettings& rs) override;
};
#endif // HANDRAIL_H