pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/msgs/distortion.proto

19 lines
390 B
Protocol Buffer
Raw Normal View History

2019-03-28 10:57:49 +08:00
syntax = "proto2";
package gazebo.msgs;
/// \ingroup gazebo_msgs
/// \interface Distortion
/// \brief Information about a distortion element
import "vector2d.proto";
message Distortion
{
optional Vector2d center = 1;
optional double k1 = 2;
optional double k2 = 3;
optional double k3 = 4;
optional double p1 = 5;
optional double p2 = 6;
}