We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 639450d commit 0a3d4a4Copy full SHA for 0a3d4a4
osi_common.proto
@@ -32,6 +32,19 @@ message Vector3d
32
optional double z = 3;
33
}
34
35
+///
36
+/// A cartesian 2D vector for positions, velocities or accelerations.
37
+/// Units are [m] for positions, [m/s] for velocities and [m/s^2] for accelerations.
38
39
+message Vector2d
40
+{
41
+ /// The x coordinate
42
+ optional double x = 1;
43
+
44
+ /// The y coordinate
45
+ optional double y = 2;
46
+}
47
48
///
49
/// A timestamp.
50
/// Names and types of fields chosen in accordance with google/protobuf/timestamp.proto to allow a possible switch in the
0 commit comments