You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
281 B
12 lines
281 B
syntax = "proto3";
|
|
//this message is used for the reply the command
|
|
message LazorData{
|
|
|
|
float Feature_X=1; //特征点X
|
|
float Feature_Y=2; //特征点Y
|
|
float Feature_Z=3; //特征点Z
|
|
float Gap=4; //间隙
|
|
float WrongEdgeQuantity=5; //错边量
|
|
float Area=6; //面积
|
|
};
|
|
|
|
|