添加曲度

This commit is contained in:
dong 2023-08-07 17:54:44 +08:00
parent c592e915a2
commit 569f238b59

View File

@ -32,6 +32,7 @@ message RtssGraphicStorage {
repeated CalculateLink CalculateLink = 24; // link信息
repeated SlopeKiloMarker slopeKiloMarker = 25; //
repeated CurvatureKiloMarker curvatureKiloMarker = 26; //
repeated Curvature curvatures = 27; //
}
message Canvas {
@ -353,6 +354,13 @@ message Slope {
repeated string refDeviceId = 4; // ()
}
message Curvature {
CommonInfo common = 1;
repeated Point points = 2;
sint32 curvatureNumber = 3; //--
repeated string refDeviceId = 4; // 线()
}
// link结构
message CalculateLink {
CommonInfo common = 1;
@ -361,7 +369,7 @@ message CalculateLink {
RelatedRef aRelatedRef = 4; // A端
RelatedRef bRelatedRef = 5; // B端
repeated DevicePosition devicePositions = 6; //link上的位置
int32 index = 7; //link唯一标识
int32 index = 7; //link唯一标识
message DevicePosition {
int32 offset = 1;
string deviceId = 2;