changed 3D rendering

added pan/zoom gesture
This commit is contained in:
2018-02-04 17:02:14 +01:00
parent 3b62f23c0e
commit 076c0e9157
32 changed files with 446 additions and 484 deletions

15
mapview/3D/grid/MyNode.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef MYNODE_H
#define MYNODE_H
#include <Indoor/grid/Grid.h>
#include <Indoor/grid/factory/v2/GridNodeImportance.h>
struct MyNode : public GridNode, public GridPoint, public GridNodeImportance {
MyNode(float x, float y, float z) : GridPoint(x,y,z) {;}
float walkImportance;
};
#endif // MYNODE_H