pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/msgs/wrench_stamped.proto

17 lines
319 B
Protocol Buffer
Raw Permalink Normal View History

2019-03-28 10:57:49 +08:00
syntax = "proto2";
package gazebo.msgs;
/// \ingroup gazebo_msgs
/// \interface WrenchStamped
/// \brief Message for a time stamped wrench value
import "time.proto";
import "wrench.proto";
message WrenchStamped
{
// Time when the data was captured
required Time time = 1;
required Wrench wrench = 2;
}