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/wifi/estimate/ray3/Walls.h
frank 8ea7b7f3b6 adjusted 3D modeling for walls
refactoring
new helper classes / methods
2018-07-22 13:47:07 +02:00

23 lines
350 B
C++

#ifndef WALLS_H
#define WALLS_H
#include "Obstacle3.h"
namespace Ray3D {
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 // WALLS_H