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/grid/factory/v2/GridNodeImportance.h
FrankE a2c9e575a2 huge commit
- worked on about everything
- grid walker using plugable modules
- wifi models
- new distributions
- worked on geometric data-structures
- added typesafe timestamps
- worked on grid-building
- added sensor-classes
- added sensor analysis (step-detection, turn-detection)
- offline data reader
- many test-cases
2016-08-29 08:18:44 +02:00

19 lines
355 B
C

#ifndef GRIDNODEIMPORTANCE_H
#define GRIDNODEIMPORTANCE_H
struct GridNodeImportance {
/** importance-weight for dijkstra calculation */
float navImportance;
/** get the node's nav importance */
float getNavImportance() const {return navImportance;}
/** ctor */
GridNodeImportance() : navImportance(1.0f) {;}
};
#endif // GRIDNODEIMPORTANCE_H