集中区分割线变为通用的多边形绘制

This commit is contained in:
joylink_zhaoerwei 2023-11-29 10:33:18 +08:00
parent 3d486fe86e
commit 38d06fc13c

View File

@ -46,7 +46,7 @@ message RtssGraphicStorage {
GenerateAxleCountingConfig generateAxleCountingConfig = 38;//
repeated DepartureTimer departureTimers = 39; //
repeated AutoReturnBox autoReturnBoxs = 40; //
repeated ConcentrationDividingLine concentrationDividingLines = 41; // 线
repeated Polygon polygons = 41; // 线
}
message Canvas {
@ -123,10 +123,14 @@ message CommonInfo {
// repeated Point points = 5; //
// }
message ConcentrationDividingLine {
message Polygon {
enum PolygonType {
ConcentrationDividingLine = 0;//线
}
CommonInfo common = 1;
string code = 2; //
repeated Point points = 3; //
PolygonType polygonType = 3; //
repeated Point points = 4; //
}
message Platform {