0001-added-PickAndPlaceAction-proto-file.patch

D. Wigand, 08/26/2014 10:18 PM

Download (1.29 KB)

View differences:

proto/sandbox/rst/euroc/PickAndPlaceAction.proto
1
package rst.geometry;
2

  
3
import "rst/geometry/Pose.proto";
4

  
5
option java_outer_classname = "PickAndPlaceActionType";
6

  
7
/**
8
 * PickAndPlaceAction data consisting of two Poses, a pick-Pose and a place-Pose,
9
 * for picking and placing objects. Both poses are expressed world coordinates.
10
 *
11
 * @author Christian Emmerich <cemmeric@techfak.uni-bielefeld.de>
12
 */
13
message PickAndPlaceAction {
14

  
15
    /**
16
     * A rst.geometry.Pose representing a grip-Pose to grip an object
17
     */
18
    required Pose pickPose = 1;
19

  
20
    /**
21
     * A rst.geometry.Pose where to place the object
22
     */
23
    required Pose placePose = 2;
24

  
25
}
0
-