0001-Added-CollisionGeometry-which-describes-the-contact-.patch

J. Moringen, 06/20/2013 01:56 AM

Download (1.24 KB)

View differences:

proto/sandbox/rst/kinematics/CollisionGeometry.proto
1
package rst.kinematics;
2

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

  
5
option java_outer_classname = "CollisionGeometryType";
6

  
7
/**
8
 * Geometric description of a collision between objects.
9
 *
10
 * @author Daniel Seidel <dseidel@techfak.uni-bielefeld.de>
11
 */
12
message CollisionGeometry {
13

  
14
    /**
15
     * Contact points of the collision in world coordinate system.
16
     *
17
     * Order of contact points is not significant.
18
     */
19
    // @constraint(len(value) > 0)
20
    repeated geometry.Translation contact_points = 1;
21

  
22
}
0
-