added more cpp files for faster compile speeds
removed many obsolte elements many improvements and fixes
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#include "MMFloorOutlinePolygon.h"
|
||||
|
||||
#include "../2D/MV2DElementStair.h"
|
||||
#include "../3D/MV3DElementStair.h"
|
||||
//#include "../3D/MV3DElementStair.h"
|
||||
|
||||
|
||||
#include <Indoor/floorplan/v2/Floorplan.h>
|
||||
@@ -23,20 +23,20 @@ private:
|
||||
Floorplan::StairFreeform* stair;
|
||||
|
||||
MV2DElementStair mv2d;
|
||||
MV3DElementStair mv3d;
|
||||
//MV3DElementStair mv3d;
|
||||
|
||||
public:
|
||||
|
||||
/** ctor with the underlying model */
|
||||
MMFloorStair(MapLayer* parent, Floorplan::IndoorMap* map, Floorplan::Floor* floor, Floorplan::StairFreeform* stair) :
|
||||
MapModelElement(parent), floor(floor), stair(stair), mv2d(map, floor, stair), mv3d(floor, stair) {
|
||||
MapModelElement(parent), floor(floor), stair(stair), mv2d(map, floor, stair) {//, mv3d(floor, stair) {
|
||||
|
||||
;
|
||||
|
||||
}
|
||||
|
||||
MV2DElement* getMV2D() const override {return (MV2DElement*) &mv2d;}
|
||||
MV3DElement* getMV3D() const override {return (MV3DElement*) &mv3d;}
|
||||
//MV3DElement* getMV3D() const override {return (MV3DElement*) &mv3d;}
|
||||
|
||||
|
||||
virtual int getNumParams() const override {
|
||||
|
||||
Reference in New Issue
Block a user