From 27fc91fbe8f88b6885356e68828cfe1ce1db7601 Mon Sep 17 00:00:00 2001
From: yy1717 <fctom1215@outlook.com>
Date: 星期三, 28 二月 2024 09:53:13 +0800
Subject: [PATCH] 坐标
---
lib/src/main/cpp/map.h | 16 ++++------------
1 files changed, 4 insertions(+), 12 deletions(-)
diff --git a/lib/src/main/cpp/map.h b/lib/src/main/cpp/map.h
index 6b40fec..8032c69 100644
--- a/lib/src/main/cpp/map.h
+++ b/lib/src/main/cpp/map.h
@@ -13,28 +13,28 @@
int id;
std::string name;
double line_width;
- std::vector<PointF> map;
+ std::vector<PointF> points;
} park_button_map_t;
typedef struct {
int id;
std::string name;
double line_width;
- std::vector<PointF> map;
+ std::vector<PointF> points;
} park_edge_map_t;
typedef struct {
int id;
std::string name;
double line_width;
- std::vector<PointF> map;
+ std::vector<PointF> points;
} turn_a90_map_t;
typedef struct {
int id;
std::string name;
double line_width;
- std::vector<PointF> map;
+ std::vector<PointF> points;
} uphill_map_t;
typedef struct {
@@ -54,13 +54,5 @@
PointF back_half_small_circle_centre;
double back_half_small_circle_radius;
} curve_map_t;
-
-typedef struct {
- std::vector<curve_map_t> curve_map;
- std::vector<park_button_map_t> park_button_map;
- std::vector<park_edge_map_t> park_edge_map;
- std::vector<turn_a90_map_t> turn_a90_map;
- std::vector<uphill_map_t> uphill_map;
-} area_map_t;
#endif //MYAPPLICATION3_MAP_H
--
Gitblit v1.8.0