18 lines
288 B
Protocol Buffer
18 lines
288 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface ForceTorque
|
||
|
/// \brief ForceTorque from constraint solving
|
||
|
|
||
|
|
||
|
import "joint_wrench.proto";
|
||
|
import "time.proto";
|
||
|
|
||
|
message ForceTorque
|
||
|
{
|
||
|
repeated JointWrench wrench = 1;
|
||
|
required Time time = 2;
|
||
|
}
|
||
|
|