navit 0.5.3-trunk
Loading...
Searching...
No Matches
point.h
Go to the documentation of this file.
1
20#ifndef NAVIT_POINT_H
21#define NAVIT_POINT_H
22
23struct point {
24 int x;
25 int y;
26};
27
28struct point_rect {
29 struct point lu;
30 struct point rl;
31};
32#endif
Definition point.h:28
struct point lu
Definition point.h:29
struct point rl
Definition point.h:30
Definition point.h:23
int y
Definition point.h:25
int x
Definition point.h:24