Control Libraries 6.3.4
Loading...
Searching...
No Matches
ellipsoid.proto
1syntax = "proto3";
2
3package state_representation.proto;
4
5import "state_representation/geometry/shape.proto";
6
7message Ellipsoid {
8 Shape shape = 1;
9 repeated double axis_lengths = 2;
10 double rotation_angle = 3;
11}