公共的图形——圆
This commit is contained in:
parent
ea8b911846
commit
87726ae091
@ -19,6 +19,7 @@ message CommonGraphicStorage {
|
||||
repeated Text texts = 2;
|
||||
repeated Rect rects = 3;
|
||||
repeated Line lines = 4;
|
||||
repeated Circle circles = 5;
|
||||
}
|
||||
|
||||
message Arrow {
|
||||
@ -58,6 +59,17 @@ message Line {
|
||||
string lineColor = 7; // 线色
|
||||
}
|
||||
|
||||
message Circle {
|
||||
common.CommonInfo common = 1;
|
||||
string code = 2;
|
||||
common.Point position = 3;
|
||||
float radius = 4;
|
||||
int32 lineWidth = 5;
|
||||
string lineColor = 6;
|
||||
string fillColor = 7;
|
||||
float alpha = 8;
|
||||
}
|
||||
|
||||
//CCTV按钮
|
||||
message CCTVButton {
|
||||
enum ButtonType {
|
||||
|
Loading…
Reference in New Issue
Block a user