多边形

This commit is contained in:
joylink_zhaoerwei 2023-06-13 13:13:43 +08:00
parent e55bc50a0c
commit 321af96987

View File

@ -18,6 +18,7 @@ message RtssGraphicStorage {
repeated StationLine stationLines = 11; repeated StationLine stationLines = 11;
repeated RunLine runLines = 12; repeated RunLine runLines = 12;
repeated TrainLine trainLines = 13; repeated TrainLine trainLines = 13;
repeated Polygon polygons = 14;
} }
message Canvas { message Canvas {
@ -86,6 +87,14 @@ message Rect {
Point point = 8; // Point point = 8; //
} }
message Polygon {
CommonInfo common = 1;
string code = 2;
int32 lineWidth = 3; // 线
string lineColor = 4; // 线
repeated Point points = 5; //
}
message Platform { message Platform {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;