36 lines
704 B
C++
36 lines
704 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#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
|