vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PolygonPoint.h
Go to the documentation of this file.
1 #ifndef POLYGON_POINT
2 #define POLYGON_POINT
3 
4 namespace CarSim {
5  // tato struktura urcuje krajni bod (bod polygonu), ktery urcuje
6  // tvar hrany nebo silnice
7  struct PolygonPoint {
8  unsigned int id;
9  // id krizovatky, ke ktere ten bod patri
10  unsigned int junctionId;
11  osg::Vec3 position;
12  };
13 }
14 
15 #endif
16 
17