1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| //
| // Created by YY on 2020/4/3.
| //
|
| #ifndef MYAPPLICATION2_AREA_EXAM_H
| #define MYAPPLICATION2_AREA_EXAM_H
|
| #include <vector>
| #include "../driver_test.h"
|
| void InitAreaExam(void);
| void TerminateAreaExam(void);
| void TestAreaGeneral(LIST_AREA_MAP &AreaMapList, const car_model *car, LIST_CAR_MODEL &CarModelList, double speed, int moveDirect, double azimuth, const struct RtkTime *rtkTime);
| void DistanceOfTire2X(std::vector<double> &array, const car_model *car, std::vector<Line> line_set);
|
| #endif //MYAPPLICATION2_AREA_EXAM_H
|
|