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
Indoor/floorplan/3D/Walls.h
frank 8dd1ba0be6 moved from ray3 to floorplan/3D
worked on new wall models
refactoring
2018-07-24 08:13:16 +02:00

23 lines
395 B
C++

#ifndef FLOORPLAN_3D_WALLS_H
#define FLOORPLAN_3D_WALLS_H
#include "Obstacle3.h"
namespace Floorplan3D {
class Walls {
public:
virtual void clear() = 0;
virtual void add(const Floorplan::Floor* f, const Floorplan::FloorObstacleLine* fol, const Floorplan::FloorObstacleDoor* aboveDoor) = 0;
virtual const std::vector<Obstacle3D>& get() = 0;
};
}
#endif // FLOORPLAN_3D_WALLS_H