vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RoadsEdges.h
Go to the documentation of this file.
1 #ifndef ROADS_EDGES
2 #define ROADS_EDGES
3 
4 namespace CarSim {
5  // struktura, ve ktere budou zaznamenany hrany silnice v obou smerech
6  struct RoadsEdges {
7  // id hrany silnice ve smeru dopredu (hrany na prave strane silnice)
8  unsigned int forwardEdgeId;
9  // id hrany silnice v opacnem smeru (na leve strane silnice)
10  unsigned int backEdgeId;
11  };
12 }
13 
14 #endif
15 
16